{config, lib, pkgs, ...}: let cfg = config.features.gui.bundles.utils; in { options.features.cli.bundles.utils.enable = lib.mkEnableOption "the utils bundle"; config = lib.mkIf cfg.enable { home.packages = with pkgs; [ fd ripgrep fzf ]; }; }