eza: init (remove colorls)

This commit is contained in:
Christoph Hollizeck 2024-10-21 00:43:30 +02:00
parent 83db829e19
commit 2462f09e9d
4 changed files with 12 additions and 6 deletions

View file

@ -38,9 +38,8 @@ in
''; '';
shellAliases = { shellAliases = {
vim = "hx"; vim = "hx";
ls = "colorls --gs -A"; ls = "eza -lh --icons --git";
ll = "ls -l"; lss = "ls --total-size";
lt = "colorls --tree";
}; };
plugins = with pkgs.fishPlugins; [ plugins = with pkgs.fishPlugins; [
{ {

View file

@ -23,7 +23,7 @@ in
tree tree
ripgrep ripgrep
fzf fzf
colorls eza
wslu wslu
wsl-open wsl-open

View file

@ -24,7 +24,7 @@ in
tree tree
ripgrep ripgrep
fzf fzf
colorls eza
#optional #optional
pciutils pciutils

View file

@ -51,7 +51,14 @@ in
}; };
config = { config = {
environment.systemPackages = with pkgs; [ ]; environment.systemPackages = [ ];
# remove default nix alias
environment.shellAliases = {
l = null;
ls = null;
ll = null;
};
programs.fish = enabled; programs.fish = enabled;
users.defaultUserShell = pkgs.fish; users.defaultUserShell = pkgs.fish;