mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
70 lines
1.4 KiB
Nix
70 lines
1.4 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.services.sabnzbd;
|
|
inherit (pkgs) sabnzbd;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
###### interface
|
|
|
|
options = {
|
|
services.sabnzbd = {
|
|
enable = mkOption {
|
|
default = false;
|
|
description = "Whether to enable the sabnzbd server.";
|
|
};
|
|
configFile = mkOption {
|
|
default = "/var/lib/sabnzbd/sabnzbd.ini";
|
|
description = "Path to config file.";
|
|
};
|
|
|
|
user = mkOption {
|
|
default = "sabnzbd";
|
|
description = "User to run the service as";
|
|
};
|
|
|
|
group = mkOption {
|
|
default = "sabnzbd";
|
|
description = "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";
|
|
wantedBy = [ "multi-user.target" ];
|
|
after = [ "network.target" ];
|
|
serviceConfig = {
|
|
Type = "forking";
|
|
GuessMainPID = "no";
|
|
User = "${cfg.user}";
|
|
Group = "${cfg.group}";
|
|
ExecStart = "${sabnzbd}/bin/sabnzbd -d -f ${cfg.configFile}";
|
|
};
|
|
};
|
|
};
|
|
}
|