mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 07:29:43 +00:00
14 lines
243 B
Nix
14 lines
243 B
Nix
# Eza is an alternative to ls, written in Rust
|
|
{
|
|
programs.eza = {
|
|
enable = true;
|
|
icons = false;
|
|
git = false;
|
|
enableZshIntegration = false;
|
|
extraOptions = [
|
|
"--group-directories-first"
|
|
"--header"
|
|
];
|
|
};
|
|
}
|