From 24dce0c042f780ae381735b2106f0f0b93711e77 Mon Sep 17 00:00:00 2001 From: Ahwx Date: Tue, 3 Jun 2025 21:01:54 +0200 Subject: [PATCH] chore: close firewall more --- modules/services/monitoring.nix | 10 +++++----- modules/services/mumble.nix | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/modules/services/monitoring.nix b/modules/services/monitoring.nix index a22d5f9..43b5319 100644 --- a/modules/services/monitoring.nix +++ b/modules/services/monitoring.nix @@ -23,9 +23,9 @@ ]; }; }; - networking.firewall = { - allowedTCPPorts = [ - 9001 - ]; - }; + # networking.firewall = { + # allowedTCPPorts = [ + # 9001 + # ]; + # }; } diff --git a/modules/services/mumble.nix b/modules/services/mumble.nix index 14c9487..eaa0836 100644 --- a/modules/services/mumble.nix +++ b/modules/services/mumble.nix @@ -2,6 +2,6 @@ { services.murmur = { enable = true; - openFirewall = true; + openFirewall = false; }; }