53 lines
924 B
Nix
53 lines
924 B
Nix
{ lib, ... }:
|
|
with lib;
|
|
{
|
|
options.nas-apps.jackett = {
|
|
enable = mkEnableOption "jackett docker service";
|
|
|
|
autoStart = mkOption {
|
|
type = types.bool;
|
|
default = true;
|
|
};
|
|
|
|
port = mkOption {
|
|
type = types.str;
|
|
default = "9117";
|
|
};
|
|
|
|
name = mkOption {
|
|
type = types.str;
|
|
default = "jackett";
|
|
};
|
|
|
|
image = mkOption {
|
|
type = types.str;
|
|
default = "linuxserver/jackett";
|
|
};
|
|
|
|
configPath = mkOption {
|
|
type = types.str;
|
|
default = "/mnt/ssd/nix-app-data/jackett";
|
|
};
|
|
|
|
downloadsPath = mkOption {
|
|
type = types.str;
|
|
default = "/mnt/ssd/ssd_app_data/downloads";
|
|
};
|
|
|
|
puid = mkOption {
|
|
type = types.str;
|
|
default = "911";
|
|
};
|
|
|
|
pgid = mkOption {
|
|
type = types.str;
|
|
default = "1000";
|
|
};
|
|
|
|
timeZone = mkOption {
|
|
type = types.str;
|
|
default = "America/Chicago";
|
|
};
|
|
};
|
|
}
|