20 lines
336 B
Nix
20 lines
336 B
Nix
{
|
|
|
|
imports = [
|
|
./outTunnels.nix
|
|
./protocols.nix
|
|
];
|
|
|
|
services.i2pd = {
|
|
enable = true;
|
|
|
|
bandwidth = 912; # change to your ethernet speed.
|
|
port = 21614; # add your OWN port!! AND DONT SHARE IT!!
|
|
|
|
upnp.enable = true;
|
|
upnp.name = "onion";
|
|
|
|
|
|
};
|
|
}
|