11 lines
200 B
Nix
11 lines
200 B
Nix
{ config, ... }:
|
|
{
|
|
sops.secrets.tailscale_auth_key = { };
|
|
|
|
services.tailscale = {
|
|
enable = true;
|
|
openFirewall = true;
|
|
authKeyFile = config.sops.secrets.tailscale_auth_key.path;
|
|
};
|
|
}
|