1
0
mirror of https://github.com/Andrey0189/nixos-config-reborn.git synced 2025-09-15 10:06:00 +03:00

add eza configuration

This commit is contained in:
andrey_varnavskiy
2024-11-27 11:00:40 +05:00
parent 739d9a70da
commit 21a3e42777
2 changed files with 14 additions and 0 deletions

View File

@@ -1,6 +1,7 @@
{
imports = [
./alacritty.nix
./eza.nix
./cursor.nix
./starship.nix
./fuzzel.nix

View File

@@ -0,0 +1,13 @@
{
programs.eza = {
enable = true;
enableZshIntegration = true;
colors = "always";
git = true;
icons = "always";
extraOptions = [
"--group-directories-first"
"--header"
];
};
}