From da463f2c2713e0febc1ef4e0b6bedffc5f1361da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kier=C3=A1n=20Meinhardt?= Date: Wed, 20 Mar 2024 15:13:04 +0100 Subject: [PATCH] fix(manakish): disable systemd-networkd-wait-online --- systems/manakish/configuration.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/systems/manakish/configuration.nix b/systems/manakish/configuration.nix index 8a60db9..806a047 100644 --- a/systems/manakish/configuration.nix +++ b/systems/manakish/configuration.nix @@ -1,6 +1,7 @@ { config, pkgs, + lib, ... }: let inherit (import ../../lib) retiolumAddresses; @@ -52,5 +53,7 @@ in { hostName = "manakish"; }; + systemd.services.systemd-networkd-wait-online.enable = lib.mkForce false; + system.stateVersion = "20.09"; # Did you read the comment? }