diff --git a/config/hosts/torrent/jackett.nix b/config/hosts/torrent/jackett.nix index 1b8707e..6aa6e5e 100644 --- a/config/hosts/torrent/jackett.nix +++ b/config/hosts/torrent/jackett.nix @@ -1,6 +1,8 @@ -{ ... }: +{ nixpkgs-unstable, ... }: { services.jackett = { enable = true; + # use package from unstable to work around faulty test in older jackett version + package = nixpkgs-unstable.legacyPackages."x86_64-linux".jackett; }; }