add workaround for annoying network-manager-online systemd breakage

This commit is contained in:
Markus Heurung 2024-07-05 12:16:32 +02:00
parent c1309c7d92
commit 18eacb26dc

View file

@ -33,6 +33,14 @@
# Enable networking
networking.networkmanager.enable = true;
# Workaround for broken networkmanager/systemd thing
# https://github.com/NixOS/nixpkgs/issues/180175#issuecomment-1658731959
systemd.services.NetworkManager-wait-online = {
serviceConfig = {
ExecStart = [ "" "${pkgs.networkmanager}/bin/nm-online -q" ];
};
};
# Set your time zone.
time.timeZone = "Europe/Berlin";