aboutsummaryrefslogtreecommitdiff
path: root/modules/tlmp
diff options
context:
space:
mode:
authorMax Audron <audron@cocaine.farm>2024-02-04 12:33:25 +0100
committerMax Audron <audron@cocaine.farm>2024-02-04 12:33:25 +0100
commit3216b330a998e4c44ba87e5eb868988a8d1d552c (patch)
tree72a209401a343c6cd8e54169e2ce4fb560a8d371 /modules/tlmp
parentupdate to 23.11 and move garage (diff)
disable jackett tests
Diffstat (limited to 'modules/tlmp')
-rw-r--r--modules/tlmp/default.nix10
1 files changed, 9 insertions, 1 deletions
diff --git a/modules/tlmp/default.nix b/modules/tlmp/default.nix
index f682819..e653b29 100644
--- a/modules/tlmp/default.nix
+++ b/modules/tlmp/default.nix
@@ -11,7 +11,15 @@ with self.lib.nginx;
};
services.jellyfin.enable = true;
- services.jackett.enable = true;
+ services.jackett =
+ let jackett = pkgs.jackett.overrideAttrs (prev: {
+ doCheck = false;
+ });
+ in
+ {
+ enable = true;
+ package = jackett;
+ };
services.rutorrent = {
enable = true;