home-manager/shell/eza.nix

11 lines
177 B
Nix
Raw Permalink Normal View History

2024-07-10 06:10:56 +00:00
{ ... }:
{
programs.eza = {
enable = true;
2024-07-29 05:24:28 +00:00
enableZshIntegration = true;
2024-07-10 06:10:56 +00:00
git = true;
2024-10-17 06:17:55 +00:00
icons = "auto";
2024-07-10 06:10:56 +00:00
extraOptions = [ "--group-directories-first" ];
};
}