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