From 9be1af00f85b833daf21630584bb06f0ce3204e0 Mon Sep 17 00:00:00 2001 From: GHOSCHT <31184695+GHOSCHT@users.noreply.github.com> Date: Sat, 24 Aug 2024 10:14:23 +0200 Subject: [PATCH] Franz: Disable network monitor online check --- hosts/franz/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hosts/franz/default.nix b/hosts/franz/default.nix index 68ec74c..8723834 100644 --- a/hosts/franz/default.nix +++ b/hosts/franz/default.nix @@ -33,8 +33,11 @@ in { networking.hostId = "f014fc43"; services.zfs.autoScrub.enable = true; + # Prevent server from getting stuck in emergency mode and non-connectable via SSH systemd.enableEmergencyMode = false; - networking.firewall.enable = true; + + # Fix rebuild being stuck when Pihole is down due to docker restart + systemd.services.NetworkManager-wait-online.enable = false; # Prevent zfs from being automounted by fstab auto discovery & zfs fileSystems."/storage/dataset".options = ["noauto"];