From 531d660edd0bad5330375c36ab5d8b1150403c26 Mon Sep 17 00:00:00 2001 From: Ingolf Wagner Date: Tue, 7 Feb 2023 13:09:27 +0100 Subject: [PATCH] fix networkd problems --- nixos/machines/robi/configuration.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nixos/machines/robi/configuration.nix b/nixos/machines/robi/configuration.nix index 0e66bdb..eb8b8f4 100644 --- a/nixos/machines/robi/configuration.nix +++ b/nixos/machines/robi/configuration.nix @@ -88,5 +88,9 @@ fsType = "ext4"; }; + # usually part of the wifi.nix module + # because Networkd-wait-online is just failing. + systemd.services.systemd-networkd-wait-online.enable = false; + systemd.services.NetworkManager-wait-online.enable = false; }