13 lines
202 B
Nix
13 lines
202 B
Nix
{
|
|
services.tor = {
|
|
enable = true;
|
|
settings = {
|
|
DNSPort = 9053;
|
|
AutomapHostsOnResolve = true;
|
|
AutomapHostsSuffixes = [
|
|
".exit"
|
|
".onion"
|
|
];
|
|
};
|
|
};
|
|
}
|