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/exa.nix

15 lines
283 B
Nix
Raw Normal View History

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