From 249367f436979e62b3837f9aae453969358f70de Mon Sep 17 00:00:00 2001 From: Christoph Urlacher Date: Fri, 18 Jul 2025 19:24:05 +0200 Subject: [PATCH] Modules/Network: Disable networkmanager-wait-online service --- system/modules/network/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/system/modules/network/default.nix b/system/modules/network/default.nix index e041fa71..dcf24231 100644 --- a/system/modules/network/default.nix +++ b/system/modules/network/default.nix @@ -103,5 +103,8 @@ in { inherit (cfg) allowedTCPPorts allowedUDPPorts; }; }; + + # We don't need this, the nfs mounts should retry until online + systemd.services.NetworkManager-wait-online.enable = false; }; }