/ modules / home / programs / eza.nix
eza.nix
 1  {
 2    programs.eza = {
 3      git = true;
 4      enable = true;
 5      icons = "auto";
 6      colors = "always";
 7      enableZshIntegration = true;
 8      enableBashIntegration = true;
 9  
10      extraOptions = [
11        "--group-directories-first"
12        "--no-quotes"
13        "--header" # Show header row
14        "--git-ignore"
15        "--icons=always"
16        # "--time-style=long-iso" # ISO 8601 extended format for time
17        "--classify" # append indicator (/, *, =, @, |)
18        "--hyperlink" # make paths clickable in some terminals
19      ];
20    };
21  }