11 lines
162 B
Nix
11 lines
162 B
Nix
{...}: {
|
|
imports = [
|
|
../modules/tailscale.nix
|
|
];
|
|
services.tailscale = {
|
|
enable = true;
|
|
useRoutingFeatures = "both";
|
|
exitNode = true;
|
|
};
|
|
}
|