Home

dotnix @35ca3e78a261e9bd5687070b9545cdab554fc7b7 - refs - log -
-
https://git.jolheiser.com/dotnix.git
My nix dotfiles
dotnix / apps / exa.nix
- raw
 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";
  };
}