Files
numbus-server-module/modules/networking/firewall.nix
T
2026-02-27 12:00:02 +01:00

13 lines
238 B
Nix

{ config, ... }:
{
config = {
networking.nftables.enable = true;
networking.firewall = {
enable = true;
allowPing = true;
allowedTCPPorts = [ 53 80 443 2283 ];
allowedUDPPorts = [ 53 443 ];
};
};
}