about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--modules/shell/zsh/zshrc.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/modules/shell/zsh/zshrc.nix b/modules/shell/zsh/zshrc.nix
index d8b080f45b0b..afff41b4cdf4 100644
--- a/modules/shell/zsh/zshrc.nix
+++ b/modules/shell/zsh/zshrc.nix
@@ -1,6 +1,5 @@
 { stdenv, lib
 , any-nix-shell
-, coreutils
 , zsh-autosuggestions
 , zsh-history-substring-search
 , zsh-syntax-highlighting
@@ -177,9 +176,9 @@ fi
 # Aliases
 alias beep='printf "\a"'
 alias ls=${lib.escapeShellArg (if stdenv.isDarwin then
-                                 "/bin/ls -AFh"
+                                 "ls -AFh"
                                else
-                                 "${coreutils}/bin/ls -AF --si --color=auto")}
+                                 "ls -AF --si --color=auto")}
 alias tree='tree -aRF -I .git'
 alias vim=nvim