16 lines
205 B
Nix
16 lines
205 B
Nix
|
|
{ ... }:
|
||
|
|
|
||
|
|
{
|
||
|
|
security.acme = {
|
||
|
|
acceptTerms = true;
|
||
|
|
defaults.email = "wizzeh@protonmail.com";
|
||
|
|
};
|
||
|
|
|
||
|
|
networking.firewall.allowedTCPPorts = [
|
||
|
|
80
|
||
|
|
443
|
||
|
|
];
|
||
|
|
|
||
|
|
services.nginx.enable = true;
|
||
|
|
}
|