8 lines
128 B
Nix
8 lines
128 B
Nix
|
|
{
|
||
|
|
networking.firewall = {
|
||
|
|
enable = true;
|
||
|
|
allowedTCPPorts = [ 22 80 443 ];
|
||
|
|
allowedUDPPorts = [ 22 80 443 ];
|
||
|
|
};
|
||
|
|
}
|