This repository has been archived on 2024-01-18. You can view files and clone it, but cannot push or open issues/pull-requests.
|
{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";
|
|
};
|
|
}
|