feat(cli-utils): install fzf, rg, fd

This commit is contained in:
Yorick Barbanneau 2024-09-16 23:12:20 +02:00
parent 5f72692566
commit 8a621ec52d

View file

@ -15,17 +15,26 @@ in
theme = "base16";
};
};
programs.eza = {
enable = true;
icons = true;
};
programs.fd = {
enable = true;
};
programs.fzf = {
enable = true;
};
programs.ripgrep = {
enable = true;
};
home.packages = with pkgs; [
eza
];
home = {
sessionVariables = {
EXA_COLORS = "xx=2";
};
shellAliases = {
ls = "eza";
cat = "bat";
};
};