dotfiles/nixos/boxes/brix/i2p.nix
Cyryl Płotnicki 9f8d4dbf1b add agenix
2021-05-31 10:27:19 +01:00

10 lines
165 B
Nix

{ config, pkgs, ... }:
{
services.i2pd = {
enable = true;
bandwidth = 1024; # kb/s
proto.http.enable = true;
proto.httpProxy.enable = true;
};
}