modules: services: indexers: add prowlarr

This commit is contained in:
Bruno BELANYI 2021-10-15 15:11:15 +02:00
parent 9582f8403e
commit 927dd9e02a
1 changed files with 15 additions and 0 deletions

View File

@ -5,11 +5,13 @@ let
jackettPort = 9117;
nzbhydraPort = 5076;
prowlarrPort = 9696;
in
{
options.my.services.indexers = with lib; {
jackett.enable = mkEnableOption "Jackett torrent meta-indexer";
nzbhydra.enable = mkEnableOption "NZBHydra2 usenet meta-indexer";
prowlarr.enable = mkEnableOption "Prowlarr torrent & usenet meta-indexer";
};
config = lib.mkMerge [
@ -46,5 +48,18 @@ in
}
];
})
(lib.mkIf cfg.prowlarr.enable {
services.prowlarr = {
enable = true;
};
my.services.nginx.virtualHosts = [
{
subdomain = "prowlarr";
port = prowlarrPort;
}
];
})
];
}