tailscale on foureighty
This commit is contained in:
parent
dbb47dbcd9
commit
bcd18530c7
3 changed files with 36 additions and 1 deletions
|
@ -8,6 +8,8 @@
|
||||||
../../common.nix
|
../../common.nix
|
||||||
../../gfx-intel.nix
|
../../gfx-intel.nix
|
||||||
../../zerotier.nix
|
../../zerotier.nix
|
||||||
|
../../tailscale.nix
|
||||||
|
./tailscale-foureighty.nix
|
||||||
../../distributed-builds.nix
|
../../distributed-builds.nix
|
||||||
../../libvirt.nix
|
../../libvirt.nix
|
||||||
../../backups.nix
|
../../backups.nix
|
||||||
|
|
29
nixos/boxes/foureighty/tailscale-foureighty.nix
Normal file
29
nixos/boxes/foureighty/tailscale-foureighty.nix
Normal file
|
@ -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-c1640a3f2a7ea4c7b7d96c39
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
}
|
|
@ -1,7 +1,11 @@
|
||||||
{ config, pkgs, ... }:
|
{ config, pkgs, ... }:
|
||||||
{
|
{
|
||||||
environment.systemPackages = [ pkgs.tailscale ];
|
environment.systemPackages = [ pkgs.tailscale ];
|
||||||
services.tailscale.enable = true;
|
services.tailscale = {
|
||||||
|
enable = true;
|
||||||
|
package = pkgs.tailscale;
|
||||||
|
};
|
||||||
|
|
||||||
networking.firewall = {
|
networking.firewall = {
|
||||||
trustedInterfaces = [ "tailscale0" ];
|
trustedInterfaces = [ "tailscale0" ];
|
||||||
allowedUDPPorts = [ config.services.tailscale.port ];
|
allowedUDPPorts = [ config.services.tailscale.port ];
|
||||||
|
|
Loading…
Reference in a new issue