Home

dotnix @e87e95bcacb811a4c1c17edd4dabd9091dd55a7d - refs - log -
-
https://git.jolheiser.com/dotnix.git
My nix dotfiles
dotnix / apps / nogui / eza.nix
- raw
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
{lib, ...}: {
  programs.eza = {
    enable = true;
    # These don't affect nushell currently
    # git = true;
    # icons = true;
  };
  programs.nushell.shellAliases = {
    eza = "eza --git --icons";
    ls = "eza";
    ll = lib.mkForce "eza -al";
    lt = "eza --tree";
  };
}