configure tailscale and stuff

This commit is contained in:
cy 2025-01-24 01:10:53 -05:00
parent 76b0dd1a4e
commit 947249cc79
7 changed files with 70 additions and 24 deletions

View file

@ -0,0 +1,9 @@
{ config, ... }: {
services.tailscale = {
enable = true;
authKeyFile = config.sops.secrets."tailscale/auth".path;
extraUpFlags = [ "--advertise-exit-node" ];
useRoutingFeatures = "server";
openFirewall = true;
};
}