mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
6afb255d97
these changes were generated with nixq 0.0.2, by running nixq ">> lib.mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix nixq ">> mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix nixq ">> Inherit >> mdDoc[remove]" --batchmode nixos/**.nix two mentions of the mdDoc function remain in nixos/, both of which are inside of comments. Since lib.mdDoc is already defined as just id, this commit is a no-op as far as Nix (and the built manual) is concerned.
85 lines
1.8 KiB
Nix
85 lines
1.8 KiB
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.services.readarr;
|
|
in
|
|
{
|
|
options = {
|
|
services.readarr = {
|
|
enable = mkEnableOption "Readarr, a Usenet/BitTorrent ebook downloader";
|
|
|
|
dataDir = mkOption {
|
|
type = types.str;
|
|
default = "/var/lib/readarr/";
|
|
description = "The directory where Readarr stores its data files.";
|
|
};
|
|
|
|
package = mkPackageOption pkgs "readarr" { };
|
|
|
|
openFirewall = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description = ''
|
|
Open ports in the firewall for Readarr
|
|
'';
|
|
};
|
|
|
|
user = mkOption {
|
|
type = types.str;
|
|
default = "readarr";
|
|
description = ''
|
|
User account under which Readarr runs.
|
|
'';
|
|
};
|
|
|
|
group = mkOption {
|
|
type = types.str;
|
|
default = "readarr";
|
|
description = ''
|
|
Group under which Readarr runs.
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
systemd.tmpfiles.settings."10-readarr".${cfg.dataDir}.d = {
|
|
inherit (cfg) user group;
|
|
mode = "0700";
|
|
};
|
|
|
|
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 = { };
|
|
};
|
|
};
|
|
}
|