8 lines
102 B
Nix
8 lines
102 B
Nix
|
{
|
||
|
networking.firewall.allowedTCPPorts = [ 80 443 ];
|
||
|
|
||
|
services.nginx = {
|
||
|
enable = true;
|
||
|
};
|
||
|
}
|