dotfiles/home/features/cli/eza.nix

10 lines
164 B
Nix
Raw Normal View History

2023-08-04 13:48:14 +00:00
{ lib, ... }: {
2023-12-07 16:06:09 +00:00
programs.eza = {
2023-08-04 13:48:14 +00:00
enable = true;
enableAliases = true;
extraOptions = [
"--group-directories-first"
];
git = true;
};
}