tailscale, headscale: init

This commit is contained in:
Katherina Walshe-Grey 2025-05-21 19:28:07 +01:00
parent b35fefbf98
commit a98fd9ba83
5 changed files with 67 additions and 0 deletions

View file

@ -14,5 +14,6 @@
./sanoid.nix
./security.nix
./steam.nix
./tailscale.nix
];
}

8
common/tailscale.nix Normal file
View file

@ -0,0 +1,8 @@
{
services.tailscale = {
enable = true;
openFirewall = true;
extraUpFlags = [ "--login-server" "https://headscale.unspecified.systems" ]; # TODO: doesn't work (nixos bug); needs connecting/specifying manually
extraDaemonFlags = [ "--no-logs-no-support" ]; # disable telemetry
};
}