home-manager/shell/eza.nix

11 lines
175 B
Nix
Raw 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-07-29 05:24:28 +00:00
icons = true;
2024-07-10 06:10:56 +00:00
extraOptions = [ "--group-directories-first" ];
};
}