From fffcb38240f1cd8ccfc00822e16c0c1aa4f9db44 Mon Sep 17 00:00:00 2001 From: fi Date: Thu, 21 Nov 2024 03:05:53 +0100 Subject: [PATCH] Use qbittorrent-nox package from unstable, because stable is marked as insecure --- config/hosts/torrent/qbittorrent-nox/services.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/hosts/torrent/qbittorrent-nox/services.nix b/config/hosts/torrent/qbittorrent-nox/services.nix index 4050e15..71d22f8 100644 --- a/config/hosts/torrent/qbittorrent-nox/services.nix +++ b/config/hosts/torrent/qbittorrent-nox/services.nix @@ -2,9 +2,9 @@ # - https://github.com/NixOS/nixpkgs/issues/236736#issuecomment-1704670598 # - https://nixos.org/manual/nixos/stable/#sect-nixos-systemd-nixos -{ pkgs, ... }: +{ nixpkgs-unstable, ... }: { - systemd.packages = [ pkgs.qbittorrent-nox ]; + systemd.packages = [ nixpkgs-unstable.legacyPackages."x86_64-linux".qbittorrent-nox ]; systemd.services."qbittorrent-nox@torrent" = { overrideStrategy = "asDropin";