server/services/tailscale.nix
2024-10-07 15:32:17 +01:00

10 lines
202 B
Nix
Executable File

{ config, pkgs, ... }:
{
clicks.networking.tailscale = {
enable = true;
authKeyFile = "${config.age.secrets.tailscale.path}";
};
services.tailscale.extraUpFlags = [ "--hostname=jet" ];
}