dotfiles/home/features/cli/exa.nix

10 lines
164 B
Nix
Raw Normal View History

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