From a7e818a3fbda3540d84309a8ad23f3dcf10a43d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Charlotte=20=F0=9F=A6=9D=20Delenk?= Date: Wed, 19 Jan 2022 20:24:25 +0100 Subject: [PATCH] open node_exporter port to allowed tcp port on wg0 --- config/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/config/default.nix b/config/default.nix index 1551ca4f..ce1a1c03 100644 --- a/config/default.nix +++ b/config/default.nix @@ -30,6 +30,7 @@ ]; listenAddress = (import ../utils/getInternalIP.nix config).listenIP; }; + networking.firewall.interfaces."wg0".allowedTCPPorts = [ config.service.prometheus.exporters.node.port ]; nix.buildCores = 0;