From d495d0f8de0b62f40e7d105f1c2b60c9ae43b635 Mon Sep 17 00:00:00 2001 From: Danilo Reyes Date: Mon, 11 Dec 2023 11:23:46 -0600 Subject: [PATCH] temproarily downgrading qbittorrent and gallery-dl --- server/configuration.org | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/server/configuration.org b/server/configuration.org index c5d6586..6f76992 100644 --- a/server/configuration.org +++ b/server/configuration.org @@ -375,7 +375,7 @@ symbola #+begin_src nix unstable.yt-dlp # downloads videos from most video websites -unstable.gallery-dl # similar to yt-dlp but for most image gallery websites +# unstable.gallery-dl # similar to yt-dlp but for most image gallery websites fd # modern find, faster searches fzf # fuzzy finder! super cool and useful @@ -922,7 +922,13 @@ the best way to define them for now, is using nix. #+begin_src nix systemd = { - packages = [ pkgs.qbittorrent-nox ]; + packages = let + pkgs = import (builtins.fetchTarball { + url = "https://github.com/NixOS/nixpkgs/archive/9957cd48326fe8dbd52fdc50dd2502307f188b0d.tar.gz"; + }) {}; + + myPkg = pkgs.qbittorrent-nox; +in [ myPkg ]; services = { "qbittorrent-nox@jawz" = { enable = true;