nixos/roles/caddy.nix
2024-12-18 18:19:37 -06:00

11 lines
149 B
Nix

{
services.caddy = {
enable = true;
email = "nolan@thewordnerd.info";
};
networking.firewall.allowedTCPPorts = [
80
443
];
}