8 lines
207 B
Nix
8 lines
207 B
Nix
|
{ pkgs, ... }:
|
||
|
{
|
||
|
# networking.firewall.allowedTCPPorts = [ ... ];
|
||
|
# networking.firewall.allowedUDPPorts = [ ... ];
|
||
|
# Or disable the firewall altogether.
|
||
|
networking.firewall.enable = false;
|
||
|
}
|