From 9aadd03d666bd3fd28d3a30d24953d431a6ce55b Mon Sep 17 00:00:00 2001 From: John Lancaster <32917998+jsl12@users.noreply.github.com> Date: Thu, 26 Mar 2026 22:24:34 -0500 Subject: [PATCH] lzg alias --- modules/programs/git.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/programs/git.nix b/modules/programs/git.nix index 5181837..c0168ab 100644 --- a/modules/programs/git.nix +++ b/modules/programs/git.nix @@ -1,6 +1,6 @@ { self, inputs, ... }: { flake.modules.homeManager.git = { config, pkgs, lib, ... }: { - home.packges = with pkgs; [ + home.packages = with pkgs; [ git-credential-oauth ]; programs.git = { @@ -16,5 +16,8 @@ enableBashIntegration = true; enableZshIntegration = true; }; + home.shellAliases = { + "lzg" = "lazygit"; + }; }; }