{ config, lib, pkgs, ... }: let cfg = config.modules.programs.qbittorrent; in { options.modules.programs.qbittorrent = { enable = lib.mkOption { default = false; example = true; }; }; config = lib.mkIf cfg.enable { user.packages = with pkgs; [ qbittorrent ]; }; }