nixdots/home/programs/graphical/apps/qbittorrent.nix

17 lines
239 B
Nix
Raw Permalink Normal View History

2024-06-21 09:44:56 +00:00
{
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
];
};
}