nixos-config/hosts/chunk/tor.nix

16 lines
257 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";
2024-12-16 11:44:48 -05:00
MaxAdvertisedBandwidth = "10MBytes";
2024-12-15 18:55:15 -05:00
};
};
}