Use jackett packge from unstable to work around faulty test

This commit is contained in:
fi 2024-01-28 04:45:56 +01:00
parent 54ae773ee4
commit af0b1679e6
Signed by: fi
SSH key fingerprint: SHA256:d+6fQoDPMbSFK95zRVflRKZLRKF4cPSQb7VIxYkhFsA

View file

@ -1,6 +1,8 @@
{ ... }: { nixpkgs-unstable, ... }:
{ {
services.jackett = { services.jackett = {
enable = true; enable = true;
# use package from unstable to work around faulty test in older jackett version
package = nixpkgs-unstable.legacyPackages."x86_64-linux".jackett;
}; };
} }