nixos-configuration/modules/tor.nix
2023-11-08 23:47:06 +00:00

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"
];
};
};
};
}