Files
Olympus/home-manager/programs/terminal/eza/default.nix
2025-01-10 11:11:18 -06:00

18 lines
199 B
Nix

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