10 lines
162 B
Nix
10 lines
162 B
Nix
{ ... }:
|
|
|
|
{
|
|
networking.firewall = {
|
|
enable = true;
|
|
# Open ports in the firewall.
|
|
#allowedTCPPorts = [ ... ];
|
|
#allowedUDPPorts = [ ... ];
|
|
};
|
|
}
|