From c2b49d7d67533aa0a91a4cbc25100d1b925bf1b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Numbus?= Date: Fri, 27 Feb 2026 12:00:02 +0100 Subject: [PATCH] Temporarily open port on firewall. --- modules/networking/firewall.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/networking/firewall.nix b/modules/networking/firewall.nix index 355a5c5..f0db1b5 100644 --- a/modules/networking/firewall.nix +++ b/modules/networking/firewall.nix @@ -6,7 +6,7 @@ networking.firewall = { enable = true; allowPing = true; - allowedTCPPorts = [ 53 80 443 ]; + allowedTCPPorts = [ 53 80 443 2283 ]; allowedUDPPorts = [ 53 443 ]; }; };