flake/nixos/networking/firewall.nix
2023-09-19 08:17:43 +08:00

10 lines
164 B
Nix

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