From f19219b8ecc576950f7145b2796ae9916332cdbd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kha=C3=AFs=20COLIN?= Date: Sat, 24 May 2025 00:31:56 +0200 Subject: [PATCH] feat(eza): use eza instead of ls --- home.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/home.nix b/home.nix index ef5edb0..9dee44f 100644 --- a/home.nix +++ b/home.nix @@ -223,6 +223,7 @@ in { vim = "hx"; vi = "hx"; cat = "bat"; + ls = "eza"; # progress cp # https://serverfault.com/questions/43014/copying-a-large-directory-tree-locally-cp-or-rsync @@ -418,4 +419,10 @@ in { programs.bat = { enable = true; }; + + programs.eza = { + enable = true; + git = true; + icons = true; + }; }