This commit is contained in:
2026-07-14 02:09:48 +00:00
parent 234a303bac
commit 46752fe123
5 changed files with 33 additions and 13 deletions
+21
View File
@@ -0,0 +1,21 @@
{
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";
};
};
}