nixpkgs/nixos/modules/services/networking/sabnzbd.nix

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

78 lines
1.7 KiB
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.services.sabnzbd;
inherit (pkgs) sabnzbd;
in
{
###### interface
options = {
services.sabnzbd = {
enable = mkEnableOption (lib.mdDoc "the sabnzbd server");
2021-11-20 04:01:24 +00:00
package = mkOption {
type = types.package;
default = pkgs.sabnzbd;
2022-11-03 14:52:19 +00:00
defaultText = lib.literalExpression "pkgs.sabnzbd";
2021-11-20 04:01:24 +00:00
description = lib.mdDoc "The sabnzbd executable package run by the service.";
};
configFile = mkOption {
2021-01-31 11:12:59 +00:00
type = types.path;
default = "/var/lib/sabnzbd/sabnzbd.ini";
description = lib.mdDoc "Path to config file.";
};
user = mkOption {
default = "sabnzbd";
2021-01-31 11:12:59 +00:00
type = types.str;
description = lib.mdDoc "User to run the service as";
};
group = mkOption {
2021-01-31 11:12:59 +00:00
type = types.str;
default = "sabnzbd";
description = lib.mdDoc "Group to run the service as";
};
};
};
###### implementation
config = mkIf cfg.enable {
users.users.sabnzbd = {
uid = config.ids.uids.sabnzbd;
group = "sabnzbd";
description = "sabnzbd user";
home = "/var/lib/sabnzbd/";
createHome = true;
};
users.groups.sabnzbd = {
gid = config.ids.gids.sabnzbd;
};
systemd.services.sabnzbd = {
description = "sabnzbd server";
2014-09-22 11:09:53 +00:00
wantedBy = [ "multi-user.target" ];
after = [ "network.target" ];
serviceConfig = {
Type = "forking";
GuessMainPID = "no";
User = "${cfg.user}";
Group = "${cfg.group}";
2021-11-20 04:01:24 +00:00
ExecStart = "${lib.getBin cfg.package}/bin/sabnzbd -d -f ${cfg.configFile}";
2014-09-22 11:09:53 +00:00
};
};
};
}