1
0
Fork 0
This repository has been archived on 2024-01-18. You can view files and clone it, but cannot push or open issues/pull-requests.
dotnix-archive/apps/nogui/eza.nix

15 lines
283 B
Nix

{lib, ...}: {
programs.eza = {
enable = true;
# These don't affect nushell currently
# git = true;
# icons = true;
};
programs.nushell.shellAliases = {
eza = "eza --git --icons";
ls = "eza";
ll = lib.mkForce "eza -al";
lt = "eza --tree";
};
}