Home

dotnix @7582590a0bdbf8f379c0638c93ceb2419d1ef528 - refs - log -
-
https://git.jolheiser.com/dotnix.git
My nix dotfiles
dotnix / apps / nogui / 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";
  };
}