Files
setup-machines/home-manager/tools/eza.nix

18 lines
240 B
Nix
Raw Normal View History

2025-02-28 19:10:52 +01:00
{ pkgs, inputs, ... }:
{
programs.eza = {
enable = true;
enableZshIntegration = true;
colors = "always";
icons = "always";
git = true;
extraOptions = [
"--group-directories-first"
"-h"
2025-02-28 19:10:52 +01:00
];
};
}