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;