flake/services/distrust/tor.nix
2025-11-09 23:28:16 +00:00

16 lines
279 B
Nix

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