{ config, lib, pkgs, ... }: let cfg = config.hm.soft.torrent; in { options.hm.soft.torrent.enable = lib.mkEnableOption "torrenting software / qbittorrent"; config = lib.mkIf cfg.enable { home.packages = with pkgs; [ qbittorrent-enhanced ]; }; }