Merge pull request #111435 from helsinki-systems/sabnzbd

nixos/sabnzbd: add types
This commit is contained in:
Sandro
2021-02-01 20:07:39 +01:00
committed by GitHub

View File

@@ -18,16 +18,19 @@ in
enable = mkEnableOption "the sabnzbd server";
configFile = mkOption {
type = types.path;
default = "/var/lib/sabnzbd/sabnzbd.ini";
description = "Path to config file.";
};
user = mkOption {
default = "sabnzbd";
type = types.str;
description = "User to run the service as";
};
group = mkOption {
type = types.str;
default = "sabnzbd";
description = "Group to run the service as";
};