nixos: services: servarr: jackett: add 'port'

This commit is contained in:
Bruno BELANYI 2025-03-31 11:28:04 +00:00
parent 950cf4dd05
commit c823edf584

View file

@ -7,11 +7,19 @@ in
enable = lib.mkEnableOption "Jackett" // { enable = lib.mkEnableOption "Jackett" // {
default = config.my.services.servarr.enableAll; default = config.my.services.servarr.enableAll;
}; };
port = mkOption {
type = types.port;
default = 9117;
example = 8080;
description = "Internal port for webui";
};
}; };
config = lib.mkIf cfg.enable { config = lib.mkIf cfg.enable {
services.jackett = { services.jackett = {
enable = true; enable = true;
inherit (cfg) port;
}; };
# Jackett wants to eat *all* my RAM if left to its own devices # Jackett wants to eat *all* my RAM if left to its own devices
@ -24,7 +32,7 @@ in
my.services.nginx.virtualHosts = { my.services.nginx.virtualHosts = {
jackett = { jackett = {
port = 9117; inherit (cfg) port;
}; };
}; };