flake/nixos/networking/firewall.nix

10 lines
162 B
Nix

{ ... }:
{
networking.firewall = {
enable = true;
# Open ports in the firewall.
#allowedTCPPorts = [ ... ];
#allowedUDPPorts = [ ... ];
};
}