From 8d912f6bc0ddfef25f1ab2d69361f1116597de27 Mon Sep 17 00:00:00 2001 From: Ryan Cao <70191398+ryanccn@users.noreply.github.com> Date: Fri, 8 Sep 2023 20:48:47 +0800 Subject: [PATCH] feat(aliases): add `nb` and `nfu` --- home/programs/aliases.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/home/programs/aliases.nix b/home/programs/aliases.nix index 6520955..9e37a41 100644 --- a/home/programs/aliases.nix +++ b/home/programs/aliases.nix @@ -9,6 +9,9 @@ "j".command = "just"; "j".fishAlias = true; + "nb".command = "nix build"; + "nfu".command = "nix flake update"; + "glol".command = "git log --graph --pretty='%Cred%h%Creset -%C(auto)%d%Creset %s %Cgreen(%ar) %C(bold blue)<%an>%Creset'"; "glol".fishAlias = true;