14 lines
163 B
Nix
14 lines
163 B
Nix
{
|
|
outputs,
|
|
...
|
|
}:
|
|
|
|
{
|
|
imports = [ outputs.nixosModules.nginx ];
|
|
|
|
services.nginx = {
|
|
enable = true;
|
|
forceSSL = true;
|
|
openFirewall = true;
|
|
};
|
|
}
|