From 103d1cf1766afbfb5da6e5b63777e969bc556947 Mon Sep 17 00:00:00 2001 From: RealStickman Date: Mon, 1 May 2023 09:27:58 +0200 Subject: [PATCH] Disable nix firewall --- configuration.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configuration.nix b/configuration.nix index 839fb47..f31cd05 100644 --- a/configuration.nix +++ b/configuration.nix @@ -36,6 +36,9 @@ in # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. networking.networkmanager.enable = true; # Easiest to use and most distros use this by default. + # disable global firewall for the time being + networking.firewall.enable = false; + # Set your time zone. time.timeZone = "Europe/Zurich";