mirror of
https://github.com/ItsDrike/nixdots
synced 2024-12-26 04:54:35 +00:00
Add eza
This commit is contained in:
parent
184115b93d
commit
25d03d2327
|
@ -2,5 +2,6 @@ _: {
|
||||||
imports = [
|
imports = [
|
||||||
./git
|
./git
|
||||||
./gpg.nix
|
./gpg.nix
|
||||||
|
./eza.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
13
home/programs/terminal/tools/eza.nix
Normal file
13
home/programs/terminal/tools/eza.nix
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
# Eza is an alternative to ls, written in Rust
|
||||||
|
{
|
||||||
|
programs.eza = {
|
||||||
|
enable = true;
|
||||||
|
icons = true;
|
||||||
|
git = true;
|
||||||
|
enableZshIntegration = false;
|
||||||
|
extraOptions = [
|
||||||
|
"--group-directories-first"
|
||||||
|
"--header"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue