Files
dotnix/hosts/kepler/config/freedom/tor.nix
T
2026-07-04 05:01:54 +02:00

16 lines
240 B
Nix

_:
{
services.tor = {
enable = true;
enableGeoIP = true;
client = {
enable = true;
socksListenAddress = {
IsolateDestAddr = true;
addr = "10.11.0.10";
port = 9050;
};
};
};
}