17 lines
305 B
Nix
17 lines
305 B
Nix
{ lib, config, ... }:
|
|
|
|
{
|
|
config = lib.mkIf config.jalr.workstation.enable {
|
|
services.tor = {
|
|
enable = true;
|
|
settings = {
|
|
DNSPort = 9053;
|
|
AutomapHostsOnResolve = true;
|
|
AutomapHostsSuffixes = [
|
|
".exit"
|
|
".onion"
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|