server/services/tailscale.nix

10 lines
202 B
Nix
Raw Normal View History

2024-09-24 20:36:31 +01:00
{ config, pkgs, ... }:
{
clicks.networking.tailscale = {
enable = true;
authKeyFile = "${config.age.secrets.tailscale.path}";
};
services.tailscale.extraUpFlags = [ "--hostname=jet" ];
}