9 lines
193 B
Nix
9 lines
193 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
services.tailscale.enable = true;
|
|
services.tailscale.extraSetFlags = [
|
|
"--advertise-exit-node"
|
|
];
|
|
services.tailscale.useRoutingFeatures = "server";
|
|
}
|