mirror of
https://github.com/JulienMalka/snowfield.git
synced 2025-03-23 20:30:52 +01:00
chore: use most updated package for jackett, sonarr, radarr
This commit is contained in:
parent
11872885e0
commit
ca51d8b9bf
3 changed files with 9 additions and 3 deletions
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -35,7 +35,7 @@ in
|
|||
{
|
||||
services.radarr = {
|
||||
enable = true;
|
||||
package = pkgs.radarr;
|
||||
package = pkgs.unstable.radarr;
|
||||
inherit (cfg) user group;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue