nixos-config/modules/home/programs/terminal/eza/default.nix

11 lines
167 B
Nix
Raw Normal View History

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