nixos-config/home-manager/modules/eza.nix
2024-12-02 17:50:11 -05:00

9 lines
156 B
Nix

# A modern replacement for 'ls'.
{...}: {
programs.eza = {
enable = true;
enableZshIntegration = true;
git = true;
icons = "auto";
};
}