Use jackett packge from unstable to work around faulty test

This commit is contained in:
fi 2024-11-20 05:46:41 +01:00
parent 9def35ce2e
commit 649027b9a0

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;
}; };
} }