diff options
| author | 2026-05-13 13:43:10 +0100 | |
|---|---|---|
| committer | 2026-05-13 13:43:10 +0100 | |
| commit | 4ed988333dc08090c0ad7612b940429a22e4c3f3 (patch) | |
| tree | 2c0afdb419c43ca15734ec72bcc5aef0a9bafe85 | |
| parent | 1e7d5715de453c838829b8e97a345b9396a051df (diff) | |
| download | dotfiles-4ed988333dc08090c0ad7612b940429a22e4c3f3.tar.gz dotfiles-4ed988333dc08090c0ad7612b940429a22e4c3f3.tar.bz2 dotfiles-4ed988333dc08090c0ad7612b940429a22e4c3f3.zip | |
feat(etc): cap user systemd stop timeout at 10s
User scopes (e.g. ghostty surface containing zellij) inherit timeouts
from the user manager, not /etc/systemd/system.conf.d. Without this,
zellij sessions stall reboot for 90s before SIGKILL.
| -rw-r--r-- | etc/systemd/user.conf.d/timeout.conf | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/etc/systemd/user.conf.d/timeout.conf b/etc/systemd/user.conf.d/timeout.conf new file mode 100644 index 0000000..b48f3bb --- /dev/null +++ b/etc/systemd/user.conf.d/timeout.conf @@ -0,0 +1,3 @@ +[Manager] +DefaultTimeoutStartSec=10s +DefaultTimeoutStopSec=10s |
