Files
Olympus/homes/nathan/home-manager/programs/terminal/eza/default.nix
2026-03-06 16:24:53 -06:00

21 lines
319 B
Nix

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