From 86709e849c4c53b5cf443b0b93bd8d878f930d8d Mon Sep 17 00:00:00 2001 From: Odweta Date: Mon, 12 Jan 2026 18:00:45 +0100 Subject: [PATCH] torrent --- nixosModules/qbittorrent.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nixosModules/qbittorrent.nix b/nixosModules/qbittorrent.nix index 05a4e85..2784bfe 100644 --- a/nixosModules/qbittorrent.nix +++ b/nixosModules/qbittorrent.nix @@ -1,5 +1,7 @@ { pkgs, ... }: { - services.qbittorrent.enable = true; + environment.systemPackages = with pkgs; [ + qbittorrent + ]; }