marleyos/home/eza/default.nix

17 lines
232 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 = [
"--sort=name"
"--group-directories-first"
"--header"
"--group"
];
};
}