From c56989240675b4dc47644d1c82c2277c1f23f6f3 Mon Sep 17 00:00:00 2001 From: rope Date: Sat, 16 May 2026 19:41:21 +0100 Subject: [PATCH] systemd: shorten DefaultTimeoutStopSec to 10s Eliminates the long "stop job on user ID 1000" / watchdog hang on shutdown. Co-Authored-By: Claude Sonnet 4.6 --- common.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/common.nix b/common.nix index 96e8f85..b15c8c8 100644 --- a/common.nix +++ b/common.nix @@ -57,6 +57,9 @@ # in broken states across sessions (e.g. waybar failing to start on re-login). services.logind.settings.Login.KillUserProcesses = true; + # Shorten shutdown stop timeout to avoid long "stop job" waits + systemd.settings.Manager.DefaultTimeoutStopSec = "10s"; + # Make boot time quicker boot.loader.timeout = lib.mkDefault 5; systemd.services.NetworkManager-wait-online.enable = false;