feat(eza): Install eza

This commit is contained in:
punkfairie 2024-10-29 20:36:39 -07:00
parent 8330ae9ce2
commit acf51d22a7
Signed by: punkfairie
GPG key ID: 01823C057725C266
2 changed files with 17 additions and 0 deletions

View file

@ -33,6 +33,7 @@
./btop ./btop
./cava ./cava
./curl ./curl
./eza
./fish ./fish
./gh ./gh
./hyfetch ./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"
];
};
}