From c52df45b4f1ee025113d83c65e035e33284ccb07 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kier=C3=A1n=20Meinhardt?= Date: Thu, 6 Oct 2022 07:16:45 +0200 Subject: [PATCH] fix(ful): disable systemd-networkd-wait-online --- systems/ful/configuration.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/systems/ful/configuration.nix b/systems/ful/configuration.nix index d6f171e..a83c1ee 100644 --- a/systems/ful/configuration.nix +++ b/systems/ful/configuration.nix @@ -45,4 +45,7 @@ in { users.users.root.passwordFile = toString ; environment.systemPackages = [pkgs.vim pkgs.git pkgs.tmux pkgs.python3]; + + # since 22.05 timeout fails? + systemd.services.systemd-networkd-wait-online.enable = false; }