14 lines
218 B
Nix
14 lines
218 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: {
|
|
services.tailscale = {
|
|
enable = true;
|
|
useRoutingFeatures = lib.mkDefault "client";
|
|
};
|
|
|
|
systemd.services.tailscaled.environment = {
|
|
TS_NO_LOGS_NO_SUPPORT = "true";
|
|
};
|
|
}
|