mirror of
https://github.com/nickolaj-jepsen/nixos.git
synced 2026-01-22 16:16:50 +01:00
13 lines
240 B
Nix
13 lines
240 B
Nix
|
|
_: {
|
||
|
|
networking.firewall.allowedTCPPorts = [80 443];
|
||
|
|
|
||
|
|
services.nginx = {
|
||
|
|
enable = true;
|
||
|
|
recommendedProxySettings = true;
|
||
|
|
};
|
||
|
|
security.acme = {
|
||
|
|
acceptTerms = true;
|
||
|
|
defaults.email = "nickolaj@fireproof.website";
|
||
|
|
};
|
||
|
|
}
|