13 lines
219 B
Nix
13 lines
219 B
Nix
{pkgs, ...}: {
|
|
programs.eza = {
|
|
enable = true;
|
|
git = true;
|
|
colors = "auto";
|
|
icons = "auto";
|
|
|
|
enableZshIntegration = true;
|
|
enableFishIntegration = true;
|
|
enableBashIntegration = true;
|
|
};
|
|
}
|