[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[tor-relays] Re: Relays on NixOS



* 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
_______________________________________________
tor-relays mailing list -- tor-relays@xxxxxxxxxxxxxxxxxxxx
To unsubscribe send an email to tor-relays-leave@xxxxxxxxxxxxxxxxxxxx