From aa4cc0105958c66234feb4f33c180e6b3d2fed67 Mon Sep 17 00:00:00 2001 From: ElnuDev Date: Wed, 18 Oct 2023 18:00:29 -0700 Subject: [PATCH] pang13: disable NetworkManager wait online that hangs --- hosts/pang13/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hosts/pang13/default.nix b/hosts/pang13/default.nix index 13d23ff..06726a4 100644 --- a/hosts/pang13/default.nix +++ b/hosts/pang13/default.nix @@ -36,4 +36,7 @@ support32Bit = true; }; services.pipewire.enable = lib.mkForce false; -} \ No newline at end of file + + # https://discourse.nixos.org/t/nixos-rebuild-switch-upgrade-networkmanager-wait-online-service-failure/30746 + systemd.services.NetworkManager-wait-online.enable = lib.mkForce false; +}