fix(grfn/system): Disable NetworkManager-wait-online

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
This commit is contained in:
Aspen Smith 2023-06-27 15:09:24 -04:00 committed by clbot
parent a9096c86d9
commit 69fadf638f

View file

@ -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";