flake/nixos/networking/firewall.nix

8 lines
159 B
Nix

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