summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortriethyl <triethylammonium@pm.me>2026-02-18 09:44:43 -0500
committertriethyl <triethylammonium@pm.me>2026-02-18 09:44:43 -0500
commit8d0b546b3f04c7061ab76716fb4f017c4d22e782 (patch)
tree2c570c325fe1ebc31497ede45b8441f81d7522e1
parentc1f1f0a78b19e78b9b4fd568283dc946e0280277 (diff)
home-manager: added cli utils bundle
-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
+ ];
+ };
+}