10 lines
165 B
Nix
10 lines
165 B
Nix
|
{ config, pkgs, ... }:
|
||
|
{
|
||
|
services.i2pd = {
|
||
|
enable = true;
|
||
|
bandwidth = 1024; # kb/s
|
||
|
proto.http.enable = true;
|
||
|
proto.httpProxy.enable = true;
|
||
|
};
|
||
|
}
|