[shared] Added eza, ls replacement

This commit is contained in:
2025-04-19 17:02:30 +02:00
parent 923b0c8980
commit 7e5bc137e5
3 changed files with 14 additions and 0 deletions

View File

@ -2,6 +2,7 @@
imports = [
./btop.nix
./cava
./eza.nix
./fastfetch.nix
./fish.nix
./yazi

View File

@ -0,0 +1,12 @@
{
programs = {
eza = {
enable = true;
colors = "always";
enableFishIntegration = true;
git = true;
icons = "always";
};
fish.shellAliases.ls = "eza";
};
}