From 37e9536fb5160264caa1641d3c60b136b9ec1dbb Mon Sep 17 00:00:00 2001 From: Nolan Darilek Date: Tue, 18 Mar 2025 11:31:28 -0500 Subject: [PATCH] Restart tailscale after NetworkManager-wait-online to work around rebuild hang. --- roles/tailscale.nix | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/roles/tailscale.nix b/roles/tailscale.nix index ccd9e7a..f41449e 100644 --- a/roles/tailscale.nix +++ b/roles/tailscale.nix @@ -1,5 +1,12 @@ -{ config, lib, pkgs, ... }: +{ + config, + lib, + pkgs, + ... +}: { services.tailscale.enable = true; -} \ No newline at end of file + # See https://github.com/NixOS/nixpkgs/issues/180175#issuecomment-2541381489 + systemd.services.tailscaled.after = [ "systemd-networkd-wait-online.service" ]; +}