compsigh-minecraft/modules/tailscale.nix
2026-03-14 00:18:58 -07:00

8 lines
139 B
Nix

{ config, pkgs, ... }:
{
services.tailscale = {
enable = true;
authKeyFile = config.age.secrets.tailscale-auth-key.path;
};
}