feat(eza): Install eza

This commit is contained in:
punkfairie 2024-10-29 20:36:39 -07:00
parent 935af00f81
commit 191e2e68b3
2 changed files with 17 additions and 0 deletions

View file

@ -33,6 +33,7 @@
./btop
./cava
./curl
./eza
./fish
./gh
./hyfetch

16
home/eza/default.nix Normal file
View file

@ -0,0 +1,16 @@
{...}: {
programs.eza = {
enable = true;
git = true;
icons = "always";
colors = "always";
extraOptions = [
"--sort=name"
"--group-directories-first"
"--header"
"--group"
];
};
}