mirror of
https://github.com/kaesaecracker/nixos-configuration.git
synced 2025-01-18 18:40:14 +01:00
boot faster by not waiting for network
This commit is contained in:
parent
61c75dd492
commit
4615aad131
|
@ -87,9 +87,14 @@ in {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
systemd.extraConfig = ''
|
systemd = {
|
||||||
|
# save some boot time because nothing actually requires network connectivity
|
||||||
|
services.NetworkManager-wait-online.enable = false;
|
||||||
|
|
||||||
|
extraConfig = ''
|
||||||
DefaultTimeoutStopSec=12s
|
DefaultTimeoutStopSec=12s
|
||||||
'';
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
zsh.enable = true;
|
zsh.enable = true;
|
||||||
|
|
Loading…
Reference in a new issue