From 3bb23ce5d5284da1c8dc27af51c96b63738aa00a Mon Sep 17 00:00:00 2001 From: Callum Leslie Date: Fri, 13 Sep 2024 08:27:25 +0100 Subject: [PATCH] trayscale should not start before tailscaled --- modules/trayscale.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/trayscale.nix b/modules/trayscale.nix index f2707a8..9a67ec5 100644 --- a/modules/trayscale.nix +++ b/modules/trayscale.nix @@ -28,7 +28,7 @@ in { Unit = { Description = "An unofficial GUI wrapper around the Tailscale CLI client"; Requires = ["tray.target"]; - After = ["graphical-session-pre.target" "tray.target"]; + After = ["graphical-session-pre.target" "tray.target" "tailscaled.service"]; PartOf = ["graphical-session.target"]; }; Install = {WantedBy = ["graphical-session.target"];};