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

{ ... }:
{
programs.eza = {
enable = true;
enableZshIntegration = true;
git = true;
icons = "auto";
extraOptions = [ "--group-directories-first" ];
};
}