Files
John Lancaster c6b1361a68 update eza config
2026-04-14 17:29:28 -05:00

24 lines
515 B
Nix

{ self, inputs, ... }:
{
flake.modules.homeManager.eza = { config, pkgs, lib, ... }: {
programs.eza = {
enable = true;
enableBashIntegration = true;
enableZshIntegration = true;
git = true;
icons = "auto";
colors = "auto";
extraOptions = [
"--all"
"--long"
"--group-directories-first"
"--sort=type"
"--dereference"
"--octal-permissions"
"--smart-group"
"--no-time"
"--git"
];
};
};
}