summary refs log tree commit diff
path: root/nixos/modules/services/torrent/peerflix.nix
diff options
context:
space:
mode:
authorJaka Hudoklin <jakahudoklin@gmail.com>2014-12-01 16:40:42 +0100
committerJaka Hudoklin <jakahudoklin@gmail.com>2014-12-01 16:42:40 +0100
commit3424ded286db756b62de7e579369bbb9d1ddac84 (patch)
treebb70e36f87b2332fb07cb518a0b2e30663d642e0 /nixos/modules/services/torrent/peerflix.nix
parentb90b899b0cc0d88aa92cf751af801604e457c2d1 (diff)
downloadnixpkgs-3424ded286db756b62de7e579369bbb9d1ddac84.tar
nixpkgs-3424ded286db756b62de7e579369bbb9d1ddac84.tar.gz
nixpkgs-3424ded286db756b62de7e579369bbb9d1ddac84.tar.bz2
nixpkgs-3424ded286db756b62de7e579369bbb9d1ddac84.tar.lz
nixpkgs-3424ded286db756b62de7e579369bbb9d1ddac84.tar.xz
nixpkgs-3424ded286db756b62de7e579369bbb9d1ddac84.tar.zst
nixpkgs-3424ded286db756b62de7e579369bbb9d1ddac84.zip
nixos: add peerflix module
Diffstat (limited to 'nixos/modules/services/torrent/peerflix.nix')
-rw-r--r--nixos/modules/services/torrent/peerflix.nix63
1 files changed, 63 insertions, 0 deletions
diff --git a/nixos/modules/services/torrent/peerflix.nix b/nixos/modules/services/torrent/peerflix.nix
new file mode 100644
index 00000000000..e9f5439ffa3
--- /dev/null
+++ b/nixos/modules/services/torrent/peerflix.nix
@@ -0,0 +1,63 @@
+{ config, lib, pkgs, ... }:
+
+with lib;
+
+let
+  cfg = config.services.peerflix;
+
+  configFile = pkgs.writeText "peerflix-config.json" ''
+    {
+      "connections": 50,
+      "tmp": "${cfg.downloadDir}"
+    }
+  '';
+
+in {
+
+  ###### interface
+
+  options.services.peerflix = {
+    enable = mkOption {
+      description = "Whether to enable graphite web frontend.";
+      default = false;
+      type = types.uniq types.bool;
+    };
+
+    stateDir = mkOption {
+      description = "Peerflix state directory.";
+      default = "/var/lib/peerflix";
+      type = types.path;
+    };
+
+    downloadDir = mkOption {
+      description = "Peerflix temporary download directory.";
+      default = "${cfg.stateDir}/torrents";
+      type = types.path;
+    };
+  };
+
+  ###### implementation
+
+  config = mkIf cfg.enable {
+    systemd.services.peerflix = {
+      description = "Peerflix Daemon";
+      wantedBy = [ "multi-user.target" ];
+      after = [ "network-interfaces.target" ];
+      environment.HOME = cfg.stateDir;
+
+      preStart = ''
+        mkdir -p "${cfg.stateDir}"/{torrents,.config/peerflix-server}
+        if [ "$(id -u)" = 0 ]; then chown -R peerflix "${cfg.stateDir}"; fi
+        ln -fs "${configFile}" "${cfg.stateDir}/.config/peerflix-server/config.json"
+      '';
+
+      serviceConfig = {
+        ExecStart = "${pkgs.nodePackages.peerflix-server}/bin/peerflix-server";
+        PermissionsStartOnly = true;
+        User = "peerflix";
+      };
+    };
+
+    users.extraUsers.peerflix.uid = config.ids.uids.peerflix;
+  };
+}