feat(home): add shell module

This commit is contained in:
2026-01-15 13:41:09 +01:00
parent 4f7ab88634
commit 313e623ec4
4 changed files with 125 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
{
config,
lib,
pkgs,
...
}:
{
options.shell-utils = {
enable = lib.mkEnableOption "shell utilities";
};
config = lib.mkIf config.shell-utils.enable {
programs.fzf = {
enable = true;
enableBashIntegration = lib.mkDefault true;
};
home.packages = with pkgs; [
ripgrep
bat
jq
entr
parallel
];
};
}