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 = {
enable = true;
# unstable version to have updated torrent list
package = pkgs.unstable.jackett;
package = pkgs.jackett;
inherit (cfg) user group;
};
}

View file

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

View file

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