Files
nix/modules/system/tailscale.nix

11 lines
176 B
Nix

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