flake/nixos/networking/firewall.nix

11 lines
162 B
Nix
Raw Normal View History

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