* Clara Engler via tor-relays:
What is your setup? Do you use the package/module from nixpkgs? How do you run multiple relays?
I found setting up a Tor relay on NixOS to be very easy. The following configuration suffices: { services.tor = { enable = true; openFirewall = true; relay = { enable = true; role = "relay"; }; settings = { ExitRelay = false; Nickname = "mytorrelay"; ORPort = 12345; }; }; } I have not yet tried to run multiple relays. Not sure if this is currently possible? You might want to try to ask the NixOS package maintainers on GitHub about this.
Do you override the nixpkgs?
The package updates on NixOS-unstable are usually updated very quickly, so I see no need to use overrides. -Ralph