10 lines
157 B
Nix
10 lines
157 B
Nix
|
|
{
|
||
|
|
services.tailscale = {
|
||
|
|
enable = true;
|
||
|
|
useRoutingFeatures = "both";
|
||
|
|
};
|
||
|
|
networking.firewall = {
|
||
|
|
trustedInterfaces = ["tailscale0"];
|
||
|
|
};
|
||
|
|
}
|