Don't wait until timeout on systemd-networkd-wait-online

I believe this is caused by having a number of virtual interfaces from
OCI containers and the system wants to see them all online before
considering networkd online
This commit is contained in:
Eli Ribble 2025-08-27 17:37:19 +00:00
parent 2e07572759
commit 1f663c3e42

View file

@ -19,7 +19,10 @@
networking.useNetworkd = true;
nix.settings.experimental-features = [ "nix-command" "flakes" ];
services.swapspace.enable = true;
systemd.network.enable = true;
systemd.network = {
enable = true;
wait-online.anyInterface = true;
};
time.timeZone = "UTC";
zramSwap.enable = true;