mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-23 00:34:24 +01:00
10 lines
255 B
Nix
10 lines
255 B
Nix
{
|
|
systemd = {
|
|
# Limit shutdown wait time to 10 seconds
|
|
extraConfig = "DefaultTimeoutStopSec=10s";
|
|
|
|
# Don't wait for an internet connection before obtaining a graphical interface
|
|
services.NetworkManager-wait-online.enable = false;
|
|
};
|
|
}
|