diff options
| -rw-r--r-- | modules/software/networking/i2p.nix | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/modules/software/networking/i2p.nix b/modules/software/networking/i2p.nix index 19077ba..d94b5e4 100644 --- a/modules/software/networking/i2p.nix +++ b/modules/software/networking/i2p.nix @@ -16,13 +16,23 @@ services.i2pd = { enable = true; address = "0.0.0.0"; + upnp.enable = true; + bandwidth = 256; proto = { http.enable = true; socksProxy.enable = true; - httpProxy.enable = true; sam.enable = true; i2cp.enable = true; + + httpProxy = { + enable = true; + # outproxy = "http://false.i2p"; + # outproxy = "http://purokishi.i2p:4444"; + # outproxy = "http://outproxy.acetone.i2p:3128"; + outproxy = "http://exit.stormycloud.i2p:4444"; + # outproxy = "http://outproxy.bandura.i2p:4444"; + }; }; addressbook.subscriptions = [ |