From 6ef85e03639ec6e93eab8990e17937c3c76894bd Mon Sep 17 00:00:00 2001 From: yuri Date: Sun, 28 Jan 2024 04:45:56 +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; }; }