From 466985729cf6529034a861a97654925a665e452d Mon Sep 17 00:00:00 2001 From: Ahwx Date: Thu, 24 Apr 2025 12:05:25 +0200 Subject: [PATCH] feat: open firewall so that `violet` can talk to `dandelion` :p TODO: inter-server-networking with a virtual LAN over WireGuard --- modules/services/monitoring.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/modules/services/monitoring.nix b/modules/services/monitoring.nix index 2037e08..848e838 100644 --- a/modules/services/monitoring.nix +++ b/modules/services/monitoring.nix @@ -23,4 +23,11 @@ ]; }; }; + networking.firewall = { + allowedTCPPorts = [ + 9001 + 22 + 9123 # always also allow ssh :screaming: + ]; + }; }