mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
85 lines
1.9 KiB
Nix
85 lines
1.9 KiB
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.services.readarr;
|
|
in
|
|
{
|
|
options = {
|
|
services.readarr = {
|
|
enable = mkEnableOption (lib.mdDoc "Readarr");
|
|
|
|
dataDir = mkOption {
|
|
type = types.str;
|
|
default = "/var/lib/readarr/";
|
|
description = lib.mdDoc "The directory where Readarr stores its data files.";
|
|
};
|
|
|
|
package = mkPackageOption pkgs "readarr" { };
|
|
|
|
openFirewall = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description = lib.mdDoc ''
|
|
Open ports in the firewall for Readarr
|
|
'';
|
|
};
|
|
|
|
user = mkOption {
|
|
type = types.str;
|
|
default = "readarr";
|
|
description = lib.mdDoc ''
|
|
User account under which Readarr runs.
|
|
'';
|
|
};
|
|
|
|
group = mkOption {
|
|
type = types.str;
|
|
default = "readarr";
|
|
description = lib.mdDoc ''
|
|
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 = { };
|
|
};
|
|
};
|
|
}
|