From 649027b9a0bb733019e2ce4e469cf5d17cfb606d Mon Sep 17 00:00:00 2001 From: fi Date: Wed, 20 Nov 2024 05:46:41 +0100 Subject: [PATCH] Use jackett packge from unstable to work around faulty test --- config/hosts/torrent/jackett.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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; }; }