nix-files/hosts/by-name/servo/services/cryptocurrencies/tor.nix

8 lines
245 B
Nix
Raw Normal View History

2024-01-03 08:16:06 +00:00
{ ... }:
{
# tor: `tor.enable` doesn't start a relay, exit node, proxy, etc. it's minimal.
# tor.client.enable configures a torsocks proxy, accessible *only* to localhost.
services.tor.enable = true;
services.tor.client.enable = true;
}