Files
Olympus/homes/nathan/home-manager/programs/terminal/eza/default.nix
2026-01-20 17:30:56 -06:00

18 lines
199 B
Nix

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