aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/nixos/modules/services/misc/jackett.nix
diff options
context:
space:
mode:
authorKatharina Fey <kookie@spacekookie.de>2019-10-05 12:43:18 +0000
committerKatharina Fey <kookie@spacekookie.de>2019-10-05 12:44:52 +0000
commitcf85056ba64caf3267d43255ef4a1243e9c8ee3b (patch)
tree3051519e9c8275b870aac43f80af875715c9d124 /nixpkgs/nixos/modules/services/misc/jackett.nix
parent1148b1d122bc03e9a3665856c9b7bb96bd4e3994 (diff)
parent2436c27541b2f52deea3a4c1691216a02152e729 (diff)
Add 'nixpkgs/' from commit '2436c27541b2f52deea3a4c1691216a02152e729'
git-subtree-dir: nixpkgs git-subtree-mainline: 1148b1d122bc03e9a3665856c9b7bb96bd4e3994 git-subtree-split: 2436c27541b2f52deea3a4c1691216a02152e729
Diffstat (limited to 'nixpkgs/nixos/modules/services/misc/jackett.nix')
-rw-r--r--nixpkgs/nixos/modules/services/misc/jackett.nix82
1 files changed, 82 insertions, 0 deletions
diff --git a/nixpkgs/nixos/modules/services/misc/jackett.nix b/nixpkgs/nixos/modules/services/misc/jackett.nix
new file mode 100644
index 00000000000..f2dc6635df9
--- /dev/null
+++ b/nixpkgs/nixos/modules/services/misc/jackett.nix
@@ -0,0 +1,82 @@
+{ config, pkgs, lib, ... }:
+
+with lib;
+
+let
+ cfg = config.services.jackett;
+
+in
+{
+ options = {
+ services.jackett = {
+ enable = mkEnableOption "Jackett";
+
+ dataDir = mkOption {
+ type = types.str;
+ default = "/var/lib/jackett/.config/Jackett";
+ description = "The directory where Jackett stores its data files.";
+ };
+
+ openFirewall = mkOption {
+ type = types.bool;
+ default = false;
+ description = "Open ports in the firewall for the Jackett web interface.";
+ };
+
+ user = mkOption {
+ type = types.str;
+ default = "jackett";
+ description = "User account under which Jackett runs.";
+ };
+
+ group = mkOption {
+ type = types.str;
+ default = "jackett";
+ description = "Group under which Jackett runs.";
+ };
+
+ package = mkOption {
+ type = types.package;
+ default = pkgs.jackett;
+ defaultText = "pkgs.jackett";
+ description = "Jackett package to use.";
+ };
+ };
+ };
+
+ config = mkIf cfg.enable {
+ systemd.tmpfiles.rules = [
+ "d '${cfg.dataDir}' 0700 ${cfg.user} ${cfg.group} - -"
+ ];
+
+ systemd.services.jackett = {
+ description = "Jackett";
+ after = [ "network.target" ];
+ wantedBy = [ "multi-user.target" ];
+
+ serviceConfig = {
+ Type = "simple";
+ User = cfg.user;
+ Group = cfg.group;
+ ExecStart = "${cfg.package}/bin/Jackett --NoUpdates --DataFolder '${cfg.dataDir}'";
+ Restart = "on-failure";
+ };
+ };
+
+ networking.firewall = mkIf cfg.openFirewall {
+ allowedTCPPorts = [ 9117 ];
+ };
+
+ users.users = mkIf (cfg.user == "jackett") {
+ jackett = {
+ group = cfg.group;
+ home = cfg.dataDir;
+ uid = config.ids.uids.jackett;
+ };
+ };
+
+ users.groups = mkIf (cfg.group == "jackett") {
+ jackett.gid = config.ids.gids.jackett;
+ };
+ };
+}