summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--home-manager/features/cli/bundles/utils.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/home-manager/features/cli/bundles/utils.nix b/home-manager/features/cli/bundles/utils.nix
new file mode 100644
index 0000000..cf27a76
--- /dev/null
+++ b/home-manager/features/cli/bundles/utils.nix
@@ -0,0 +1,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
+ ];
+ };
+}