From 634b971019cdbf2bd4fc85fc94b15f7945715dfa Mon Sep 17 00:00:00 2001 From: Ittihadyya Date: Fri, 20 Dec 2024 15:06:32 +0200 Subject: [PATCH] open ports in firewall --- networking/firewall.mod.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/networking/firewall.mod.nix b/networking/firewall.mod.nix index d952102..21cac4f 100644 --- a/networking/firewall.mod.nix +++ b/networking/firewall.mod.nix @@ -23,9 +23,13 @@ networking.firewall = { allowedTCPPorts = [ 64738 # murmur tcp + 6700 # grafana + 6750 # prometheus ]; allowedUDPPorts = [ 64738 # murmur udp + 6700 # grafana + 6750 # prometheus ]; }; }