diff --git a/networking/firewall.mod.nix b/networking/firewall.mod.nix index 9a383c6..485fd99 100644 --- a/networking/firewall.mod.nix +++ b/networking/firewall.mod.nix @@ -3,6 +3,14 @@ { networking.firewall.enable = true; networking.nftables.enable = true; + networking.firewall = { + allowedTCPPorts = [ + 6703 + ]; + allowedUDPPorts = [ + 6703 + ]; + }; } ];