From 26c79b093bc314aaac2d5a6bebe980fc297545a6 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Sun, 23 Jun 2024 13:51:21 -0400 Subject: [PATCH] system: Use systemd config for phone Should decrease startup times and prevent shutdowns from hanging. --- modules/system.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/system.nix b/modules/system.nix index 1fb21b9a..dfc2ef24 100644 --- a/modules/system.nix +++ b/modules/system.nix @@ -86,7 +86,7 @@ in ]; }; - systemd = mkIf (!phone) { + systemd = { extraConfig = "DefaultTimeoutStopSec=10s"; services.NetworkManager-wait-online.enable = false; };