Workaround a NetworkManager issue on switch

https://github.com/NixOS/nixpkgs/issues/180175
This commit is contained in:
Sridhar Ratnakumar 2024-10-22 16:44:49 -04:00
parent 4d30d7442b
commit 6574f7216e

View file

@ -17,4 +17,8 @@ in
services.tailscale.enable = true;
programs.nix-ld.enable = true; # for vscode server
# Workaround the annoying `Failed to start Network Manager Wait Online` error on switch.
# https://github.com/NixOS/nixpkgs/issues/180175
systemd.services.NetworkManager-wait-online.enable = false;
}