42 lines
801 B
Nix
42 lines
801 B
Nix
{ pkgs, lib, config, ... }: {
|
|
|
|
services.i2pd = {
|
|
enable = false;
|
|
port = 9732;
|
|
enableIPv6 = true;
|
|
floodfill = true;
|
|
};
|
|
|
|
#i2pcontrol
|
|
services.i2pd.proto.i2pControl = {
|
|
enable = true;
|
|
port = 7659;
|
|
name = "i2pcontrol";
|
|
address = "0.0.0.0";
|
|
};
|
|
|
|
|
|
services.i2pd.proto.http = {
|
|
enable = true;
|
|
};
|
|
|
|
services.i2pd.proto.socksProxy = {
|
|
enable = true;
|
|
address = "0.0.0.0";
|
|
};
|
|
|
|
|
|
|
|
# todo proxy
|
|
# todo privacy respecting services
|
|
# todo reseed export
|
|
# need to create a nginx proxy that proxies the reseed file
|
|
|
|
services.prometheus.exporters.i2pd = {
|
|
enable = config.services.i2pd.enable;
|
|
port = 3321;
|
|
routerAddress = "https://127.0.0.1:${toString config.services.i2pd.proto.i2pControl.port}";
|
|
routerPassword = "itoopie";
|
|
};
|
|
}
|