workaround for network-manager upgrade

This commit is contained in:
John Bowdre 2023-12-23 21:12:07 -06:00
parent b065d65910
commit 61ef08fa5c
2 changed files with 4 additions and 0 deletions

View File

@ -4,6 +4,7 @@
./fish.nix
./locale.nix
./nix.nix
./network-manager.nix
./tailscale.nix
] ++ (builtins.attrValues outputs.nixosModules);

View File

@ -0,0 +1,3 @@
{ lib, ... }: {
systemd.services.NetworkManager-wait-online.enable = lib.mkForce false;
}