chore: use most updated package for jackett, sonarr, radarr

This commit is contained in:
Luj 2024-05-25 17:48:51 +02:00
parent 4128841829
commit 619a6bcea9
3 changed files with 9 additions and 3 deletions

View file

@ -35,7 +35,7 @@ in
services.jackett = { services.jackett = {
enable = true; enable = true;
# unstable version to have updated torrent list # unstable version to have updated torrent list
package = pkgs.unstable.jackett; package = pkgs.jackett;
inherit (cfg) user group; inherit (cfg) user group;
}; };
} }

View file

@ -35,7 +35,7 @@ in
{ {
services.radarr = { services.radarr = {
enable = true; enable = true;
package = pkgs.radarr; package = pkgs.unstable.radarr;
inherit (cfg) user group; inherit (cfg) user group;
}; };
} }

View file

@ -1,4 +1,9 @@
{ lib, config, ... }: {
lib,
pkgs,
config,
...
}:
with lib; with lib;
let let
cfg = config.luj.sonarr; cfg = config.luj.sonarr;
@ -30,6 +35,7 @@ in
{ {
services.sonarr = { services.sonarr = {
enable = true; enable = true;
package = pkgs.unstable.sonarr;
inherit (cfg) user group; inherit (cfg) user group;
}; };
} }