Files
nix/modules/tailscale.nix
2025-10-04 01:55:31 -05:00

11 lines
176 B
Nix

{ config, pkgs, ... }:
{
services.tailscale = {
enable = true;
useRoutingFeatures = "both";
authKeyFile = "/home/blake/.nix/.keyring/tailscale/authkey";
};
}