about summary refs log tree commit diff
path: root/users/grfn
diff options
context:
space:
mode:
authorAspen Smith <root@gws.fyi>2023-06-27T19·09-0400
committerclbot <clbot@tvl.fyi>2023-06-27T19·15+0000
commit69fadf638f60f85e1c67318675b000e83e50b954 (patch)
tree3a98d273f82ba4b08a6d9ed8f5f7a60fb733fe37 /users/grfn
parenta9096c86d96dd4926142ce3252273449104a2271 (diff)
fix(grfn/system): Disable NetworkManager-wait-online r/6352
This is known to always fail, per
https://github.com/NixOS/nixpkgs/issues/180175

Change-Id: I7401ba462a7cfe791ab176b48bcb9c86314f9d2e
Reviewed-on: https://cl.tvl.fyi/c/depot/+/8859
Reviewed-by: grfn <grfn@gws.fyi>
Autosubmit: grfn <grfn@gws.fyi>
Tested-by: BuildkiteCI
Diffstat (limited to 'users/grfn')
-rw-r--r--users/grfn/system/system/modules/common.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/users/grfn/system/system/modules/common.nix b/users/grfn/system/system/modules/common.nix
index 3edec8a552..4ed1f8d7b1 100644
--- a/users/grfn/system/system/modules/common.nix
+++ b/users/grfn/system/system/modules/common.nix
@@ -17,6 +17,8 @@ with lib;
 
   networking.useDHCP = false;
   networking.networkmanager.enable = true;
+  systemd.services.NetworkManager-wait-online.enable = lib.mkForce false;
+  systemd.services.systemd-networkd-wait-online.enable = lib.mkForce false;
 
   i18n = {
     defaultLocale = "en_US.UTF-8";