The configuration doesn't have `group`, so it's a slightly different configuration to the rest of the *arr services. I also want to move the other two indexer modules under `servarr`, as they are all closely related.
48 lines
1,012 B
Nix
48 lines
1,012 B
Nix
# Torrent and usenet meta-indexers
|
|
{ config, lib, ... }:
|
|
let
|
|
cfg = config.my.services.indexers;
|
|
|
|
jackettPort = 9117;
|
|
nzbhydraPort = 5076;
|
|
in
|
|
{
|
|
options.my.services.indexers = with lib; {
|
|
jackett.enable = mkEnableOption "Jackett torrent meta-indexer";
|
|
nzbhydra.enable = mkEnableOption "NZBHydra2 usenet meta-indexer";
|
|
};
|
|
|
|
config = lib.mkMerge [
|
|
(lib.mkIf cfg.jackett.enable {
|
|
services.jackett = {
|
|
enable = true;
|
|
};
|
|
|
|
# Jackett wants to eat *all* my RAM if left to its own devices
|
|
systemd.services.jackett = {
|
|
serviceConfig = {
|
|
MemoryHigh = "15%";
|
|
MemoryMax = "25%";
|
|
};
|
|
};
|
|
|
|
my.services.nginx.virtualHosts = {
|
|
jackett = {
|
|
port = jackettPort;
|
|
};
|
|
};
|
|
})
|
|
|
|
(lib.mkIf cfg.nzbhydra.enable {
|
|
services.nzbhydra2 = {
|
|
enable = true;
|
|
};
|
|
|
|
my.services.nginx.virtualHosts = {
|
|
nzbhydra = {
|
|
port = nzbhydraPort;
|
|
};
|
|
};
|
|
})
|
|
];
|
|
}
|