9 lines
113 B
Nix
9 lines
113 B
Nix
{ pkgs
|
|
, config
|
|
, ...
|
|
}: {
|
|
services.tailscale = {
|
|
enable = true;
|
|
useRoutingFeatures = "client";
|
|
};
|
|
}
|