summaryrefslogtreecommitdiff
path: root/home-manager/features/cli/bundles/utils.nix
blob: cf27a769c9a2c6d2b640f6962ebb6da33cab8659 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{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
    ];
  };
}