Merge pull request #111435 from helsinki-systems/sabnzbd
nixos/sabnzbd: add types
This commit is contained in:
commit
449b698a0b
1 changed files with 3 additions and 0 deletions
|
@ -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";
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue