dotfiles/nixos/boxes/foureighty/tailscale-foureighty.nix

32 lines
1 KiB
Nix
Raw Normal View History

2021-06-12 15:18:43 +01:00
{ config, pkgs, inputs, lib, ... }:
2021-06-12 16:46:42 +01:00
let
2022-05-02 09:59:47 +01:00
inherit (inputs.nixpkgs-nixos-unstable.legacyPackages."x86_64-linux") tailscale;
2022-03-10 12:25:23 +00:00
in {
2021-11-22 19:32:26 +00:00
systemd.services.tailscale-autoconnect = {
description = "Automatic connection to Tailscale";
2021-06-12 15:18:43 +01:00
# make sure tailscale is running before trying to connect to tailscale
after = [ "network-pre.target" "tailscale.service" ];
wants = [ "network-pre.target" "tailscale.service" ];
wantedBy = [ "multi-user.target" ];
# set this service as a oneshot job
serviceConfig.Type = "oneshot";
# have the job run this shell script
2021-06-12 16:46:42 +01:00
script = ''
2021-06-12 15:18:43 +01:00
# wait for tailscaled to settle
sleep 2
# check if we are already authenticated to tailscale
2021-06-12 16:46:42 +01:00
status="$(${tailscale}/bin/tailscale status -json | ${pkgs.jq}/bin/jq -r .BackendState)"
2021-06-12 15:18:43 +01:00
if [ $status = "Running" ]; then # if so, then do nothing
exit 0
fi
# otherwise authenticate with tailscale
2021-12-25 12:27:11 +00:00
${tailscale}/bin/tailscale up -authkey tskey-kdLez34CNTRL-ZYLukvuu2zdDeywb4N8wVU
2021-06-12 15:18:43 +01:00
'';
};
}