From 4d9b86b260d14b2c31f2065852bde355a74a99bf Mon Sep 17 00:00:00 2001 From: fi Date: Mon, 6 Jan 2025 23:59:51 +0100 Subject: [PATCH] Use jackett package from master to work around faulty test in older jackett version --- config/hosts/torrent/jackett.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/hosts/torrent/jackett.nix b/config/hosts/torrent/jackett.nix index 6aa6e5e..675576f 100644 --- a/config/hosts/torrent/jackett.nix +++ b/config/hosts/torrent/jackett.nix @@ -1,8 +1,8 @@ -{ nixpkgs-unstable, ... }: +{ nixpkgs-master, ... }: { 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; + # use package from master to work around faulty test in older jackett version + package = nixpkgs-master.legacyPackages."x86_64-linux".jackett; }; }