1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00

fix(manakish): disable systemd-networkd-wait-online

This commit is contained in:
2024-03-20 15:13:04 +01:00
parent df20b34b2b
commit da463f2c27

View File

@@ -1,6 +1,7 @@
{ {
config, config,
pkgs, pkgs,
lib,
... ...
}: let }: let
inherit (import ../../lib) retiolumAddresses; inherit (import ../../lib) retiolumAddresses;
@@ -52,5 +53,7 @@ in {
hostName = "manakish"; hostName = "manakish";
}; };
systemd.services.systemd-networkd-wait-online.enable = lib.mkForce false;
system.stateVersion = "20.09"; # Did you read the comment? system.stateVersion = "20.09"; # Did you read the comment?
} }