15 lines
258 B
Nix
15 lines
258 B
Nix
{...}: {
|
|
services.tor = {
|
|
enable = true;
|
|
openFirewall = true;
|
|
relay = {
|
|
enable = true;
|
|
role = "relay";
|
|
};
|
|
settings = {
|
|
ORPort = 9001;
|
|
Nickname = "chunk";
|
|
MaxAdvertisedBandwidth = "10 MBytes";
|
|
};
|
|
};
|
|
}
|