dotfiles/nixos/boxes/bolty/i2p.nix

9 lines
165 B
Nix
Raw Normal View History

2022-03-10 12:25:23 +00:00
{ config, pkgs, ... }: {
2021-05-31 09:15:44 +01:00
services.i2pd = {
enable = true;
bandwidth = 1024; # kb/s
proto.http.enable = true;
proto.httpProxy.enable = true;
};
}