nixos-selfhost/tail.nix

12 lines
181 B
Nix
Raw Normal View History

2024-03-10 21:44:51 +01:00
{ config, ... }:
{
services.tailscale = {
2024-04-02 17:55:12 +02:00
enable =false;
2024-03-10 21:44:51 +01:00
useRoutingFeatures = "both";
2024-03-10 22:33:51 +01:00
extraUpFlags = [
"--advertise-exit-node"
"--exit-node"
];
2024-03-10 21:44:51 +01:00
};
}