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