Restart tailscale after NetworkManager-wait-online to work around rebuild hang.

This commit is contained in:
Nolan Darilek 2025-03-18 11:31:28 -05:00
parent de652fc2ce
commit 37e9536fb5

View file

@ -1,5 +1,12 @@
{ config, lib, pkgs, ... }: {
config,
lib,
pkgs,
...
}:
{ {
services.tailscale.enable = true; services.tailscale.enable = true;
} # See https://github.com/NixOS/nixpkgs/issues/180175#issuecomment-2541381489
systemd.services.tailscaled.after = [ "systemd-networkd-wait-online.service" ];
}