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

16 lines
226 B
Nix
Raw Normal View History

2023-10-15 16:05:28 -04:00
{ ... }: {
programs = {
fzf = {
enable = true;
enableBashIntegration = true;
};
ripgrep = {
enable = true;
arguments = [
"--no-config"
];
};
jq.enable = true;
};
}