This commit is contained in:
ItsDrike 2024-04-04 22:14:34 +02:00
parent 184115b93d
commit 25d03d2327
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0
2 changed files with 14 additions and 0 deletions

View file

@ -2,5 +2,6 @@ _: {
imports = [
./git
./gpg.nix
./eza.nix
];
}

View 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"
];
};
}