adding tailscale

This commit is contained in:
2025-10-04 01:55:31 -05:00
parent 3f1a00b110
commit a2b9efe34c
2 changed files with 12 additions and 0 deletions

10
modules/tailscale.nix Normal file
View File

@@ -0,0 +1,10 @@
{ config, pkgs, ... }:
{
services.tailscale = {
enable = true;
useRoutingFeatures = "both";
authKeyFile = "/home/blake/.nix/.keyring/tailscale/authkey";
};
}