marleyos/old/home/programs/eza.nix
2024-11-15 17:45:23 -08:00

18 lines
248 B
Nix

{ ... }:
{
programs.eza = {
enable = true;
git = true;
icons = "always";
colors = "always";
extraOptions = [
"--all"
"--sort=name"
"--group-directories-first"
"--header"
"--group"
];
};
}