Files
ndots/modules/home-manager/eza/default.nix
2026-07-14 02:09:48 +00:00

22 lines
329 B
Nix

{
lib,
config,
pkgs,
...
}:
{
options.custom = {
eza.enable = lib.mkEnableOption "enable eza - a modern replacement for ls";
};
config = lib.mkIf config.custom.eza.enable {
programs.eza = {
enable = true;
enableZshIntegration = true;
colors = "auto";
icons = "auto";
};
};
}