Home

dotnix @e5bd53d77b0675e98fca6ff3ed8aee94c01ae073 - 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
15
16
{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 -l";
    la = "exa -a";
    lt = "exa --tree";
    lla = "exa -la";
  };
}