From 385c26f3a04568fc500914c714deec038f8bcd9c Mon Sep 17 00:00:00 2001 From: hektor Date: Mon, 24 Aug 2026 19:33:33 +0200 Subject: [PATCH] fix(astyanax): resolve network error on rebuild --- hosts/astyanax/default.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/hosts/astyanax/default.nix b/hosts/astyanax/default.nix index 22c36e9..b3a2579 100644 --- a/hosts/astyanax/default.nix +++ b/hosts/astyanax/default.nix @@ -101,9 +101,12 @@ in useNetworkd = true; }; - systemd.network.networks."40-wlan0" = { - matchConfig.Name = "wlan0"; - networkConfig.DHCP = "yes"; + systemd.network = { + networks."40-wlan0" = { + matchConfig.Name = "wlan0"; + networkConfig.DHCP = "yes"; + }; + wait-online.anyInterface = true; }; boot.binfmt.emulatedSystems = [ "aarch64-linux" ];