Skip to content

Commit

Permalink
fix(tailscale): wrong tailscale service 'wants' target
Browse files Browse the repository at this point in the history
  • Loading branch information
gaelreyrol committed Aug 13, 2023
1 parent 2da6541 commit 4872999
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mixins/tailscale.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
description = "Automatic connection to Tailscale";

# make sure tailscale is running before trying to connect to tailscale
after = [ "network-pre.target" "tailscale.service" ];
wants = [ "network-pre.target" "tailscale.service" ];
after = [ "network-pre.target" "tailscaled.service" ];
wants = [ "network-pre.target" "tailscaled.service" ];
wantedBy = [ "multi-user.target" ];

# set this service as a oneshot job
Expand Down

0 comments on commit 4872999

Please sign in to comment.