nixos-config/hosts/chunk/tor.nix

16 lines
258 B
Nix
Raw Normal View History

2024-12-15 18:55:15 -05:00
{...}: {
services.tor = {
enable = true;
openFirewall = true;
relay = {
enable = true;
role = "relay";
};
settings = {
ORPort = 9001;
Nickname = "chunk";
MaxAdvertisedBandwidth = "10 MBytes";
};
};
}