8 lines
139 B
Nix
8 lines
139 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
services.tailscale = {
|
|
enable = true;
|
|
authKeyFile = config.age.secrets.tailscale-auth-key.path;
|
|
};
|
|
}
|