Move eza (and fix it)

This commit is contained in:
Henry Hiles 2023-12-26 13:52:12 -05:00
parent fa8fef927d
commit 2ec0af73b7
4 changed files with 12 additions and 13 deletions

11
wrappers/common/eza.nix Normal file
View file

@ -0,0 +1,11 @@
{pkgs, ...}: {
wrappers.eza = {
basePackage = pkgs.eza;
flags = [
"--all"
"--icons"
"--color=always"
"--group-directories-first"
];
};
}