match tailscale version
This commit is contained in:
parent
b1522c6563
commit
3b5f680111
4 changed files with 36 additions and 24 deletions
|
@ -1,4 +1,7 @@
|
||||||
{ config, pkgs, inputs, lib, ... }:
|
{ config, pkgs, inputs, lib, ... }:
|
||||||
|
let
|
||||||
|
tailscale = inputs.nixpkgs-nixos-unstable.legacyPackages."x86_64-linux".tailscale;
|
||||||
|
in
|
||||||
{
|
{
|
||||||
systemd.services.tailscale-autoconnect = {
|
systemd.services.tailscale-autoconnect = {
|
||||||
description = "Automatic connection to Tailscale";
|
description = "Automatic connection to Tailscale";
|
||||||
|
@ -12,18 +15,18 @@
|
||||||
serviceConfig.Type = "oneshot";
|
serviceConfig.Type = "oneshot";
|
||||||
|
|
||||||
# have the job run this shell script
|
# have the job run this shell script
|
||||||
script = with pkgs; ''
|
script = ''
|
||||||
# wait for tailscaled to settle
|
# wait for tailscaled to settle
|
||||||
sleep 2
|
sleep 2
|
||||||
|
|
||||||
# check if we are already authenticated to tailscale
|
# check if we are already authenticated to tailscale
|
||||||
status="$(${tailscale}/bin/tailscale status -json | ${jq}/bin/jq -r .BackendState)"
|
status="$(${tailscale}/bin/tailscale status -json | ${pkgs.jq}/bin/jq -r .BackendState)"
|
||||||
if [ $status = "Running" ]; then # if so, then do nothing
|
if [ $status = "Running" ]; then # if so, then do nothing
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# otherwise authenticate with tailscale
|
# otherwise authenticate with tailscale
|
||||||
${tailscale}/bin/tailscale up -authkey tskey-abb12c2c0f365cfda4f897c7
|
${tailscale}/bin/tailscale up -authkey tskey-bd6b308c9c22272a0a66c442
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,7 @@
|
||||||
{ config, pkgs, inputs, lib, ... }:
|
{ config, pkgs, inputs, lib, ... }:
|
||||||
|
let
|
||||||
|
tailscale = inputs.nixpkgs-nixos-unstable.legacyPackages."x86_64-linux".tailscale;
|
||||||
|
in
|
||||||
{
|
{
|
||||||
systemd.services.tailscale-autoconnect = {
|
systemd.services.tailscale-autoconnect = {
|
||||||
description = "Automatic connection to Tailscale";
|
description = "Automatic connection to Tailscale";
|
||||||
|
@ -12,18 +15,18 @@
|
||||||
serviceConfig.Type = "oneshot";
|
serviceConfig.Type = "oneshot";
|
||||||
|
|
||||||
# have the job run this shell script
|
# have the job run this shell script
|
||||||
script = with pkgs; ''
|
script = ''
|
||||||
# wait for tailscaled to settle
|
# wait for tailscaled to settle
|
||||||
sleep 2
|
sleep 2
|
||||||
|
|
||||||
# check if we are already authenticated to tailscale
|
# check if we are already authenticated to tailscale
|
||||||
status="$(${tailscale}/bin/tailscale status -json | ${jq}/bin/jq -r .BackendState)"
|
status="$(${tailscale}/bin/tailscale status -json | ${pkgs.jq}/bin/jq -r .BackendState)"
|
||||||
if [ $status = "Running" ]; then # if so, then do nothing
|
if [ $status = "Running" ]; then # if so, then do nothing
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# otherwise authenticate with tailscale
|
# otherwise authenticate with tailscale
|
||||||
${tailscale}/bin/tailscale up -authkey tskey-c1640a3f2a7ea4c7b7d96c39
|
${tailscale}/bin/tailscale up -authkey tskey-bd6b308c9c22272a0a66c442
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,7 @@
|
||||||
{ config, pkgs, inputs, lib, ... }:
|
{ config, pkgs, inputs, lib, ... }:
|
||||||
|
let
|
||||||
|
tailscale = inputs.nixpkgs-nixos-unstable.legacyPackages."x86_64-linux".tailscale;
|
||||||
|
in
|
||||||
{
|
{
|
||||||
systemd.services.tailscale-autoconnect = {
|
systemd.services.tailscale-autoconnect = {
|
||||||
description = "Automatic connection to Tailscale";
|
description = "Automatic connection to Tailscale";
|
||||||
|
@ -12,18 +15,18 @@
|
||||||
serviceConfig.Type = "oneshot";
|
serviceConfig.Type = "oneshot";
|
||||||
|
|
||||||
# have the job run this shell script
|
# have the job run this shell script
|
||||||
script = with pkgs; ''
|
script = ''
|
||||||
# wait for tailscaled to settle
|
# wait for tailscaled to settle
|
||||||
sleep 2
|
sleep 2
|
||||||
|
|
||||||
# check if we are already authenticated to tailscale
|
# check if we are already authenticated to tailscale
|
||||||
status="$(${tailscale}/bin/tailscale status -json | ${jq}/bin/jq -r .BackendState)"
|
status="$(${tailscale}/bin/tailscale status -json | ${pkgs.jq}/bin/jq -r .BackendState)"
|
||||||
if [ $status = "Running" ]; then # if so, then do nothing
|
if [ $status = "Running" ]; then # if so, then do nothing
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# otherwise authenticate with tailscale
|
# otherwise authenticate with tailscale
|
||||||
${tailscale}/bin/tailscale up -authkey tskey-abb12c2c0f365cfda4f897c7
|
${tailscale}/bin/tailscale up -authkey tskey-bd6b308c9c22272a0a66c442
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,7 @@
|
||||||
{ config, pkgs, inputs, lib, ... }:
|
{ config, pkgs, inputs, lib, ... }:
|
||||||
|
let
|
||||||
|
tailscale = inputs.nixpkgs-nixos-unstable.legacyPackages."x86_64-linux".tailscale;
|
||||||
|
in
|
||||||
{
|
{
|
||||||
systemd.services.tailscale-autoconnect = {
|
systemd.services.tailscale-autoconnect = {
|
||||||
description = "Automatic connection to Tailscale";
|
description = "Automatic connection to Tailscale";
|
||||||
|
@ -12,18 +15,18 @@
|
||||||
serviceConfig.Type = "oneshot";
|
serviceConfig.Type = "oneshot";
|
||||||
|
|
||||||
# have the job run this shell script
|
# have the job run this shell script
|
||||||
script = with pkgs; ''
|
script = ''
|
||||||
# wait for tailscaled to settle
|
# wait for tailscaled to settle
|
||||||
sleep 2
|
sleep 2
|
||||||
|
|
||||||
# check if we are already authenticated to tailscale
|
# check if we are already authenticated to tailscale
|
||||||
status="$(${tailscale}/bin/tailscale status -json | ${jq}/bin/jq -r .BackendState)"
|
status="$(${tailscale}/bin/tailscale status -json | ${pkgs.jq}/bin/jq -r .BackendState)"
|
||||||
if [ $status = "Running" ]; then # if so, then do nothing
|
if [ $status = "Running" ]; then # if so, then do nothing
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# otherwise authenticate with tailscale
|
# otherwise authenticate with tailscale
|
||||||
${tailscale}/bin/tailscale up -authkey tskey-d6d3e4b981980045e18d0e64
|
${tailscale}/bin/tailscale up -authkey tskey-bd6b308c9c22272a0a66c442
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue