Files
Olympus/modules/users/nathan/home-manager/features/eza.nix
2026-04-22 13:53:13 -05:00

21 lines
328 B
Nix

{ ... }: {
flake.homeModules.nathan-terminal = { config, lib, pkgs, ... }: {
programs.eza = {
enable = true;
enableZshIntegration = true;
extraOptions = [
"--color=auto"
];
git = true;
icons = "auto";
};
};
}