nixos-configs/common/modules/bash/programs.nix

21 lines
355 B
Nix
Raw Normal View History

2023-10-15 16:05:28 -04:00
{ ... }: {
programs = {
fzf = {
enable = true;
enableBashIntegration = true;
};
ripgrep = {
enable = true;
arguments = [
2023-10-15 16:16:31 -04:00
"--max-columns=150"
"--max-columns-preview"
"--hidden"
"--glob=!.git/*"
"--smart-case"
2023-10-15 16:05:28 -04:00
];
};
jq.enable = true;
2023-10-15 16:23:28 -04:00
htop.enable = true;
2023-10-15 16:05:28 -04:00
};
}