nixos/roles/caddy.nix

11 lines
149 B
Nix
Raw Normal View History

2024-12-18 18:19:37 -06:00
{
services.caddy = {
enable = true;
email = "nolan@thewordnerd.info";
};
networking.firewall.allowedTCPPorts = [
80
443
];
}