This commit is contained in:
Harivansh Rathi 2026-03-21 14:31:33 -04:00
parent 6a0ac0385e
commit 2f9518f88a
2 changed files with 13 additions and 0 deletions

View file

@ -1,6 +1,7 @@
{...}: {
imports = [
./bat.nix
./eza.nix
./claude.nix
./codex.nix
./fzf.nix

12
home/eza.nix Normal file
View file

@ -0,0 +1,12 @@
{...}: {
programs.eza = {
enable = true;
enableZshIntegration = true;
icons = "auto";
git = true;
extraOptions = [
"--group-directories-first"
"--header"
];
};
}