nix-config/modules/proxy/default.nix

9 lines
143 B
Nix

{ pkgs, ... }:
{
services.caddy = {
enable = true;
package = pkgs.caddy;
};
networking.firewall.allowedTCPPorts = [ 80 443 ];
}