nixdots/home/programs/terminal/tools/eza.nix

14 lines
242 B
Nix
Raw Normal View History

2024-04-04 20:14:34 +00:00
# Eza is an alternative to ls, written in Rust
{
programs.eza = {
enable = true;
2024-04-04 20:29:59 +00:00
icons = false;
2024-04-04 20:14:34 +00:00
git = true;
enableZshIntegration = false;
extraOptions = [
"--group-directories-first"
"--header"
];
};
}