1
Files
flake-nixinator/home/modules/nzbget/options.nix
2023-04-28 13:23:43 +02:00

16 lines
255 B
Nix

{
lib,
mylib,
...
}:
with lib;
with mylib.modules; {
enable = mkEnableOpt "Enable NzbGet";
mainDir = mkOption {
type = types.str;
default = "~/Videos/NzbGet";
description = "The folder, where nzbget stores downloaded data.";
};
}