cryodev/templates/generic-server/services/nginx.nix
2026-03-06 08:31:13 +01:00

14 lines
163 B
Nix

{
outputs,
...
}:
{
imports = [ outputs.nixosModules.nginx ];
services.nginx = {
enable = true;
forceSSL = true;
openFirewall = true;
};
}