nix/modules/system/hardware/firewall.nix

10 lines
118 B
Nix
Raw Normal View History

2024-03-12 21:24:29 +01:00
{ ... }:
{
networking.firewall = {
enable = true;
2024-10-13 17:05:00 +02:00
allowedTCPPorts = [ ];
allowedUDPPorts = [ ];
2024-03-12 21:24:29 +01:00
};
}