boot faster by not waiting for network

This commit is contained in:
Vinzenz Schroeter 2023-09-17 14:03:37 +02:00
parent 61c75dd492
commit 4615aad131

View file

@ -87,9 +87,14 @@ in {
};
};
systemd.extraConfig = ''
DefaultTimeoutStopSec=12s
'';
systemd = {
# save some boot time because nothing actually requires network connectivity
services.NetworkManager-wait-online.enable = false;
extraConfig = ''
DefaultTimeoutStopSec=12s
'';
};
programs = {
zsh.enable = true;