tailscale: add exit node functionality to Gutterman

This commit is contained in:
wo2wz 2025-11-21 09:05:58 -05:00
parent 3784ddfda1
commit 1f153cc599
4 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,8 @@
{ config, ... }:
{
services.tailscale = {
useRoutingFeatures = "client";
extraUpFlags = [ "--exit-node-allow-lan-access=true" ];
};
}