From b1522c65639f6deb796947dd6cfbff637da6dd64 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cyryl=20P=C5=82otnicki?= Date: Sat, 12 Jun 2021 16:38:27 +0100 Subject: [PATCH] skinny on tailscale --- nixos/boxes/skinnyv/default.nix | 2 ++ nixos/boxes/skinnyv/tailscale-skinnyv.nix | 29 +++++++++++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 nixos/boxes/skinnyv/tailscale-skinnyv.nix diff --git a/nixos/boxes/skinnyv/default.nix b/nixos/boxes/skinnyv/default.nix index 65af65ec..23845807 100644 --- a/nixos/boxes/skinnyv/default.nix +++ b/nixos/boxes/skinnyv/default.nix @@ -8,6 +8,8 @@ ../../common.nix ../../gfx-intel.nix ../../i3 + ../../tailscale.nix + ./tailscale-skinnyv.nix ../../distributed-builds.nix ../../gui ../../git diff --git a/nixos/boxes/skinnyv/tailscale-skinnyv.nix b/nixos/boxes/skinnyv/tailscale-skinnyv.nix new file mode 100644 index 00000000..23b51a2d --- /dev/null +++ b/nixos/boxes/skinnyv/tailscale-skinnyv.nix @@ -0,0 +1,29 @@ +{ config, pkgs, inputs, lib, ... }: +{ + systemd.services.tailscale-autoconnect = { + 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" ]; + wantedBy = [ "multi-user.target" ]; + + # set this service as a oneshot job + serviceConfig.Type = "oneshot"; + + # have the job run this shell script + script = with pkgs; '' + # wait for tailscaled to settle + sleep 2 + + # check if we are already authenticated to tailscale + status="$(${tailscale}/bin/tailscale status -json | ${jq}/bin/jq -r .BackendState)" + if [ $status = "Running" ]; then # if so, then do nothing + exit 0 + fi + + # otherwise authenticate with tailscale + ${tailscale}/bin/tailscale up -authkey tskey-abb12c2c0f365cfda4f897c7 + ''; + }; +}