Skip to content

Commit a1a595b

Browse files
committed
develop: i2pd docs
1 parent 4e720c3 commit a1a595b

File tree

3 files changed

+27
-1
lines changed

3 files changed

+27
-1
lines changed

docs/modules/nixos/i2pd.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# I2P Daemon
2+
3+
I2P is an End-to-End encrypted and anonymous Internet.
4+
5+
View the [*nix-core* NixOS module on GitHub](https://github.com/sid115/nix-core/tree/master/modules/nixos/i2pd).
6+
7+
## References
8+
9+
- [Homepage](https://i2pd.website/)
10+
- [Documentation](https://i2pd.readthedocs.io/en/latest/)
11+
- [GitHub](https://github.com/PurpleI2P/i2pd)
12+
- [I2P on NixOS guide](https://voidcruiser.nl/rambles/i2p-on-nixos/)
13+
14+
## Configuration
15+
16+
### NixOS
17+
18+
```nix
19+
{ inputs, ... }:
20+
21+
{
22+
imports = [ inputs.core.nixosModules.i2pd ];
23+
24+
services.i2pd.enable = true;
25+
}
26+
```

mkdocs.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ nav:
4646
- guacamole: modules/nixos/guacamole.md
4747
- home-assistant-oci: modules/nixos/home-assistant-oci.md
4848
- hydra: modules/nixos/hydra.md
49+
- i2pd: modules/nixos/i2pd.md
4950
- instaloader: modules/nixos/instaloader.md
5051
- jellyfin: modules/nixos/jellyfin.md
5152
- jirafeau: modules/nixos/jirafeau.md

modules/nixos/i2pd/default.nix

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# https://voidcruiser.nl/rambles/i2p-on-nixos/
21
# TODO: HM config for i2p profile in LibreWolf
32

43
{ config, lib, ... }:

0 commit comments

Comments
 (0)