This repository has been archived on 2024-12-15. You can view files and clone it, but cannot push or open issues or pull requests.
home-manager/shell/eza.nix

11 lines
177 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-10-17 06:17:55 +00:00
icons = "auto";
2024-07-10 06:10:56 +00:00
extraOptions = [ "--group-directories-first" ];
};
}