Add qbittorrent

This commit is contained in:
ItsDrike 2024-06-21 11:44:56 +02:00
parent 874cbcec70
commit 183c97f992
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0
4 changed files with 20 additions and 0 deletions

View file

@ -3,5 +3,6 @@ _: {
./wayland.nix
./stremio.nix
./nomacs.nix
./qbittorrent.nix
];
}

View file

@ -0,0 +1,17 @@
{
lib,
pkgs,
osConfig,
...
}: let
inherit (lib) mkIf;
cfg = osConfig.myOptions.home-manager.programs.applications.qbittorrent;
in {
config = mkIf cfg.enable {
home.packages = with pkgs; [
qbittorrent
];
};
}