flake/services/tor.nix
2025-11-06 00:40:34 +00:00

15 lines
238 B
Nix

{
services.tor = {
enable = true;
relay = {
enable = true;
role = "relay";
};
settings = {
Nickname = "Distrust";
ORPort = 9001;
};
};
networking.firewall.allowedTCPPorts = [ 9001 ];
}