nix/modules/system/hardware/firewall.nix

10 lines
135 B
Nix
Raw Normal View History

2024-03-12 21:24:29 +01:00
{ ... }:
{
networking.firewall = {
enable = true;
2024-06-21 11:13:17 +02:00
allowedTCPPorts = [ 53317 3000 ];
2024-03-26 19:50:08 +01:00
allowedUDPPorts = [ 53317 ];
2024-03-12 21:24:29 +01:00
};
}