From c5faa74fd92f9ce991cb02fc9ad47654a85ca6eb Mon Sep 17 00:00:00 2001 From: Gabe Venberg Date: Tue, 14 May 2024 05:17:52 -0500 Subject: [PATCH] fixed la zsh alias. --- modules/home-manager/terminal/zsh.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/home-manager/terminal/zsh.nix b/modules/home-manager/terminal/zsh.nix index 66a9a24..d492991 100644 --- a/modules/home-manager/terminal/zsh.nix +++ b/modules/home-manager/terminal/zsh.nix @@ -64,7 +64,7 @@ }; shellAliases = { ll = "ls -lh"; - la = "-lha"; + la = "ls -lha"; please = "sudo $(fc -ln -1)"; pyactivate = "source ./.venv/bin/activate"; };