From 412c2075d4fb19d3cb6b0af3169ed21db3ee4f7b Mon Sep 17 00:00:00 2001 From: Hendrik Sokolowski Date: Sat, 28 Jan 2023 22:20:57 +0100 Subject: [PATCH] configure systemd-network to accept any interface to consider itself online --- modules/core/networking.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/core/networking.nix b/modules/core/networking.nix index f5bd201d..44c3fe0e 100644 --- a/modules/core/networking.nix +++ b/modules/core/networking.nix @@ -31,7 +31,7 @@ in { config = { # disable NetworkManager and systemd-networkd -wait-online by default systemd.services.NetworkManager-wait-online.enable = lib.mkDefault false; - systemd.services.systemd-networkd-wait-online.enable = lib.mkDefault false; + systemd.network.wait-online.anyInterface = lib.mkDefault true; networking.networkmanager = { # Enable networkmanager. REMEMBER to add yourself to group in order to use nm related stuff.