Fixed sops secret path for home manager; added automatic tailscale auth

This commit is contained in:
2026-06-27 22:10:55 +02:00
parent 57f6b25a9e
commit bd56dec0b1
3 changed files with 8 additions and 4 deletions
+4 -1
View File
@@ -1,7 +1,10 @@
{ ... }:
{ config, ... }:
{
sops.secrets.tailscale_auth_key = { };
services.tailscale = {
enable = true;
openFirewall = true;
authKeyFile = config.sops.secrets.tailscale_auth_key.path;
};
}