feat(shell): add enable option

This commit is contained in:
2026-05-22 10:25:52 +02:00
parent c3239c544a
commit 1158e855c2
5 changed files with 34 additions and 17 deletions

View File

@@ -1,19 +1,23 @@
{
config,
lib,
pkgs,
...
}:
{
programs.fzf = {
enable = true;
enableBashIntegration = lib.mkDefault true;
};
home.packages = with pkgs; [
ripgrep
bat
jq
entr
parallel
];
{
config = lib.mkIf config.shell.enable {
programs.fzf = {
enable = true;
enableBashIntegration = lib.mkDefault true;
};
home.packages = with pkgs; [
ripgrep
bat
jq
entr
parallel
];
};
}