From ea6d2caa9dec8fb4c5091443824ba310da9608b4 Mon Sep 17 00:00:00 2001 From: teutat3s Date: Sat, 28 Jan 2023 15:13:47 +0100 Subject: [PATCH] networking: don't wait for network-online It failed upon deployment with deploy-rs and caused it to rollback --- modules/core/networking.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/core/networking.nix b/modules/core/networking.nix index 43e35c34..f5bd201d 100644 --- a/modules/core/networking.nix +++ b/modules/core/networking.nix @@ -29,8 +29,9 @@ in { }; }; config = { - # disable NetworkManager-wait-online by default + # disable NetworkManager and systemd-networkd -wait-online by default systemd.services.NetworkManager-wait-online.enable = lib.mkDefault false; + systemd.services.systemd-networkd-wait-online.enable = lib.mkDefault false; networking.networkmanager = { # Enable networkmanager. REMEMBER to add yourself to group in order to use nm related stuff. -- 2.44.1