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