forked from extern/nix-config
6 lines
220 B
Bash
6 lines
220 B
Bash
|
SYSTEMD="/etc/systemd/system.conf"
|
||
|
|
||
|
# Change the default timeout from 90s to 10s, preventing the system from hanging at shutdown
|
||
|
echo "DefaultTimeoutStartSec=10s" >> $SYSTEMD
|
||
|
echo "DefaultTimeoutStopSec=10s" >> $SYSTEMD
|