chore(configs/common): remove tailscale autologin

keys only have 90 days expiry and it's annoying having to rotate them
This commit is contained in:
uku 2025-03-07 17:47:21 +01:00
parent ba4b27b664
commit c5290e121d
Signed by: uku
SSH key fingerprint: SHA256:4P0aN6M8ajKukNi6aPOaX0LacanGYtlfjmN+m/sHY/o
3 changed files with 1 additions and 26 deletions

View file

@ -15,10 +15,7 @@ let
rootPassword = _utils.setupSingleSecret config "rootPassword" { };
secrets = _utils.setupSharedSecrets config {
secrets = [
"userPassword"
"tailscaleKey"
];
secrets = [ "userPassword" ];
};
in
{
@ -188,11 +185,6 @@ in
tailscale = {
enable = true;
useRoutingFeatures = "both";
extraUpFlags = [
"--ssh"
"--stateful-filtering"
];
authKeyFile = secrets.get "tailscaleKey";
};
};