From 933cdbac0cdfd7a3d4dba384eeee98a8f5b20872 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Sun, 29 Oct 2023 18:50:22 +0100 Subject: [PATCH] network: don't wait for all interfaces to be online --- nix/nixos-module/server/network.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nix/nixos-module/server/network.nix b/nix/nixos-module/server/network.nix index ea7c4cd..b0591cb 100644 --- a/nix/nixos-module/server/network.nix +++ b/nix/nixos-module/server/network.nix @@ -114,5 +114,7 @@ in networkConfig.Bridge = net; }; }) {} ctNets; + + wait-online.anyInterface = true; }; }