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"; theme = "base16";
}; };
}; };
programs.eza = {
enable = true;
icons = true;
};
programs.fd = {
enable = true;
home.packages = with pkgs; [ };
eza programs.fzf = {
]; enable = true;
};
programs.ripgrep = {
enable = true;
};
home = { home = {
sessionVariables = { sessionVariables = {
EXA_COLORS = "xx=2"; EXA_COLORS = "xx=2";
}; };
shellAliases = { shellAliases = {
ls = "eza";
cat = "bat"; cat = "bat";
}; };
}; };