From 3fcadf2047cc99c88eda2233903b8deadc4ee92f Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Wed, 27 Aug 2025 17:51:35 +0000 Subject: [PATCH] Massively decrease the timeout waiting for the network to come online --- modules/system/base.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/system/base.nix b/modules/system/base.nix index 088fdbf..d5be555 100644 --- a/modules/system/base.nix +++ b/modules/system/base.nix @@ -21,7 +21,10 @@ services.swapspace.enable = true; systemd.network = { enable = true; - wait-online.anyInterface = true; + wait-online = { + anyInterface = true; + timeout = 10; + }; }; time.timeZone = "UTC"; zramSwap.enable = true;