update eza config

This commit is contained in:
John Lancaster
2026-04-14 17:26:10 -05:00
parent 934aeb429c
commit c6b1361a68
+16 -6
View File
@@ -1,14 +1,24 @@
{ inputs, pkgs, lib, ... }: { self, inputs, ... }:
{ {
flake.modules.homeManager.eza = { pkgs, lib, ... }: { flake.modules.homeManager.eza = { config, pkgs, lib, ... }: {
programs.eza = { programs.eza = {
enable = true; enable = true;
package = pkgs.eza;
enableBashIntegration = true; enableBashIntegration = true;
enableZshIntegration = true; enableZshIntegration = true;
}; git = true;
home.shellAliases = { icons = "auto";
ls = "${lib.getExe pkgs.eza} -algos type --follow-symlinks --all --all"; colors = "auto";
extraOptions = [
"--all"
"--long"
"--group-directories-first"
"--sort=type"
"--dereference"
"--octal-permissions"
"--smart-group"
"--no-time"
"--git"
];
}; };
}; };
} }