home: zsh: add usual aliases

I forgot to add them, since on NixOS they are defined at the system
level by default.
This commit is contained in:
Bruno BELANYI 2023-02-08 10:36:07 +00:00
parent 4971634115
commit 0e4a4df544

View file

@ -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";
};