nixpkgs/nixos/modules/services/misc/readarr.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

85 lines
1.8 KiB
Nix
Raw Normal View History

2023-03-12 19:54:23 +00:00
{ config, pkgs, lib, ... }:
with lib;
let
cfg = config.services.readarr;
in
{
options = {
services.readarr = {
enable = mkEnableOption "Readarr, a Usenet/BitTorrent ebook downloader";
2023-03-12 19:54:23 +00:00
dataDir = mkOption {
type = types.str;
default = "/var/lib/readarr/";
description = "The directory where Readarr stores its data files.";
2023-03-12 19:54:23 +00:00
};
package = mkPackageOption pkgs "readarr" { };
2023-03-12 19:54:23 +00:00
openFirewall = mkOption {
type = types.bool;
default = false;
description = ''
2023-03-12 19:54:23 +00:00
Open ports in the firewall for Readarr
'';
};
user = mkOption {
type = types.str;
default = "readarr";
description = ''
2023-03-12 19:54:23 +00:00
User account under which Readarr runs.
'';
};
group = mkOption {
type = types.str;
default = "readarr";
description = ''
2023-03-12 19:54:23 +00:00
Group under which Readarr runs.
'';
};
};
};
config = mkIf cfg.enable {
2024-01-11 21:10:18 +00:00
systemd.tmpfiles.settings."10-readarr".${cfg.dataDir}.d = {
inherit (cfg) user group;
mode = "0700";
};
2023-03-12 19:54:23 +00:00
systemd.services.readarr = {
description = "Readarr";
after = [ "network.target" ];
wantedBy = [ "multi-user.target" ];
serviceConfig = {
Type = "simple";
User = cfg.user;
Group = cfg.group;
ExecStart = "${cfg.package}/bin/Readarr -nobrowser -data='${cfg.dataDir}'";
Restart = "on-failure";
};
};
networking.firewall = mkIf cfg.openFirewall {
allowedTCPPorts = [ 8787 ];
};
users.users = mkIf (cfg.user == "readarr") {
readarr = {
description = "Readarr service";
home = cfg.dataDir;
group = cfg.group;
isSystemUser = true;
};
};
users.groups = mkIf (cfg.group == "readarr") {
readarr = { };
};
};
}