Server: enable routing features for tailscale

This commit is contained in:
Toast 2023-08-26 13:12:15 +02:00
parent cb3ec0cb57
commit 200ff43096
2 changed files with 9 additions and 0 deletions

View file

@ -13,5 +13,6 @@
./ddclient.nix ./ddclient.nix
./beep.nix ./beep.nix
./wireguard.nix ./wireguard.nix
./tailscale.nix
]; ];
} }

View file

@ -0,0 +1,8 @@
{ config, ... }:
{
services.tailscale = {
# This is needed for being an exit node
useRoutingFeatures = "server";
};
}