From bd984e7aafb6dcb06f681e3e496f161cc68e0dd7 Mon Sep 17 00:00:00 2001 From: lightly-toasted Date: Thu, 2 Oct 2025 22:52:47 +0900 Subject: [PATCH] feat(zsh): update aliases - Removed update alias - Added some git aliases --- home/modules/cli/zsh.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/home/modules/cli/zsh.nix b/home/modules/cli/zsh.nix index 16aee21..d788361 100644 --- a/home/modules/cli/zsh.nix +++ b/home/modules/cli/zsh.nix @@ -7,8 +7,9 @@ syntaxHighlighting.enable = true; shellAliases = { - update = "sudo nixos-rebuild switch --flake /home/toast/nix-config"; gs = "git status"; + gl = "git log --oneline --graph --decorate --all"; + ga = "git add --all"; }; }; }