16 lines
240 B
Nix
16 lines
240 B
Nix
_:
|
|
{
|
|
services.tor = {
|
|
enable = true;
|
|
enableGeoIP = true;
|
|
client = {
|
|
enable = true;
|
|
socksListenAddress = {
|
|
IsolateDestAddr = true;
|
|
addr = "10.11.0.10";
|
|
port = 9050;
|
|
};
|
|
};
|
|
};
|
|
}
|