diff options
| author | triethyl <triethylammonium@pm.me> | 2026-02-18 09:44:43 -0500 |
|---|---|---|
| committer | triethyl <triethylammonium@pm.me> | 2026-02-18 09:44:43 -0500 |
| commit | 8d0b546b3f04c7061ab76716fb4f017c4d22e782 (patch) | |
| tree | 2c570c325fe1ebc31497ede45b8441f81d7522e1 /home-manager | |
| parent | c1f1f0a78b19e78b9b4fd568283dc946e0280277 (diff) | |
home-manager: added cli utils bundle
Diffstat (limited to 'home-manager')
| -rw-r--r-- | home-manager/features/cli/bundles/utils.nix | 12 |
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 + ]; + }; +} |
