{ lib, config, pkgs, ... }: let inherit (lib) mkIf mkOption types; in { options.smayzy.qbittorrent.enable = mkOption { type = types.bool; default = false; description = "qbittorrent"; }; config = mkIf config.smayzy.qbittorrent.enable { environment.systemPackages = with pkgs; [ qbittorrent ]; }; }