marleyos/home/programs/eza.nix

19 lines
248 B
Nix
Raw Normal View History

{ ... }:
{
2024-10-29 20:36:39 -07:00
programs.eza = {
enable = true;
git = true;
icons = "always";
colors = "always";
extraOptions = [
"--all"
2024-10-29 20:36:39 -07:00
"--sort=name"
"--group-directories-first"
"--header"
"--group"
];
};
}