flake/nixos/networking/firewall.nix

11 lines
164 B
Nix
Raw Normal View History

2023-09-19 00:17:43 +00:00
{ ... }:
{
networking.firewall = {
enable = true;
# Open ports in the firewall.
#allowedTCPPorts = [ ... ];
#allowedUDPPorts = [ ... ];
};
}