nixos/sabnzbd: add types

wip/yesman
Fritz Otlinghaus 3 years ago
parent 4015c5ca9c
commit 14a8446dc1
No known key found for this signature in database
GPG Key ID: 1E5F98946FB1444E
  1. 3
      nixos/modules/services/networking/sabnzbd.nix

@ -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…
Cancel
Save