nix-config/modules/firewall.nix

8 lines
207 B
Nix
Raw Normal View History

2025-04-03 12:50:08 +02:00
{ pkgs, ... }:
{
# networking.firewall.allowedTCPPorts = [ ... ];
# networking.firewall.allowedUDPPorts = [ ... ];
# Or disable the firewall altogether.
networking.firewall.enable = false;
}