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

16 lines
285 B
Nix

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