From 0e4a4df5446f8c87814882c997035dac4f035c0b Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Wed, 8 Feb 2023 10:36:07 +0000 Subject: [PATCH] home: zsh: add usual aliases I forgot to add them, since on NixOS they are defined at the system level by default. --- home/zsh/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/home/zsh/default.nix b/home/zsh/default.nix index 4d61685..0b11f31 100644 --- a/home/zsh/default.nix +++ b/home/zsh/default.nix @@ -71,6 +71,10 @@ in }; shellAliases = { + # Well-known ls aliases + l = "ls -alh"; + ll = "ls -l"; + # Sometime `gpg-agent` errors out... reset-agent = "gpg-connect-agent updatestartuptty /bye"; };