https://git.jolheiser.com/dotnix.git
1 2 3 4 5 6 7 8 9 10 11 12 13 14
{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"; }; }