mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-12-19 11:02:18 +00:00
17 lines
270 B
Nix
17 lines
270 B
Nix
|
{
|
||
|
programs.eza = {
|
||
|
enable = true;
|
||
|
enableFishIntegration = false;
|
||
|
extraOptions = [
|
||
|
"--group-directories-first"
|
||
|
];
|
||
|
git = true;
|
||
|
};
|
||
|
|
||
|
home.shellAliases = {
|
||
|
ls = "eza";
|
||
|
l = "eza -lhg";
|
||
|
ll = "eza -alhg";
|
||
|
lt = "eza --tree";
|
||
|
};
|
||
|
}
|