diff --git a/home/applications/eza/default.nix b/home/applications/eza/default.nix index 2780a3e..4bb9c78 100644 --- a/home/applications/eza/default.nix +++ b/home/applications/eza/default.nix @@ -1,15 +1,10 @@ { programs.eza = { enable = true; - git = true; icons = true; - extraOptions = ["--header"]; - # Fish have builtin aliases for `ls`, alias `ls` to `eza` is the only thing we want to do - #enableAliases = true; }; home.shellAliases = { - "ls" = "eza"; - "tree" = "ls --tree"; + "tree" = "eza --tree"; }; }