summaryrefslogtreecommitdiffstats
path: root/nixos/modules/services/networking/i2p.nix
diff options
context:
space:
mode:
authorJoel Moberg <joel.moberg@gmail.com>2015-04-15 12:52:06 +0200
committerJoel Moberg <joel.moberg@gmail.com>2015-04-15 12:52:06 +0200
commit5b075eb400e738635ddbcb2fbf46980d595e9249 (patch)
tree9d0d0fa58b1cd944f884c5c1771e4254f1ece9d4 /nixos/modules/services/networking/i2p.nix
parent2c6fbdefad035963793b51fb24e5323b65cd33bf (diff)
i2p: add nixos service
Diffstat (limited to 'nixos/modules/services/networking/i2p.nix')
-rw-r--r--nixos/modules/services/networking/i2p.nix42
1 files changed, 42 insertions, 0 deletions
diff --git a/nixos/modules/services/networking/i2p.nix b/nixos/modules/services/networking/i2p.nix
new file mode 100644
index 000000000000..bad22c791388
--- /dev/null
+++ b/nixos/modules/services/networking/i2p.nix
@@ -0,0 +1,42 @@
+{ config, lib, pkgs, ... }:
+
+with lib;
+
+let
+ cfg = config.services.i2p;
+ homeDir = "/var/lib/i2p";
+in {
+ ###### interface
+ options.services.i2p = {
+ enable = mkOption {
+ type = types.bool;
+ default = false;
+ description = ''
+ Enables i2p as a running service upon activation.
+ '';
+ };
+ };
+
+ ###### implementation
+ config = mkIf cfg.enable {
+ users.extraUsers.i2p = {
+ group = "i2p";
+ description = "i2p User";
+ home = homeDir;
+ createHome = true;
+ uid = config.ids.uids.i2p;
+ };
+ users.extraGroups.i2p.gid = config.ids.gids.i2p;
+ systemd.services.i2p = {
+ description = "I2P router with administration interface for hidden services";
+ after = [ "network.target" ];
+ wantedBy = [ "multi-user.target" ];
+ serviceConfig = {
+ User = "i2p";
+ WorkingDirectory = homeDir;
+ Restart = "on-abort";
+ ExecStart = "${pkgs.i2p}/bin/i2prouter-plain";
+ };
+ };
+ };
+}