lzg alias

This commit is contained in:
John Lancaster
2026-03-26 22:24:34 -05:00
parent cb0c671f47
commit 9aadd03d66
+4 -1
View File
@@ -1,6 +1,6 @@
{ self, inputs, ... }: { { self, inputs, ... }: {
flake.modules.homeManager.git = { config, pkgs, lib, ... }: { flake.modules.homeManager.git = { config, pkgs, lib, ... }: {
home.packges = with pkgs; [ home.packages = with pkgs; [
git-credential-oauth git-credential-oauth
]; ];
programs.git = { programs.git = {
@@ -16,5 +16,8 @@
enableBashIntegration = true; enableBashIntegration = true;
enableZshIntegration = true; enableZshIntegration = true;
}; };
home.shellAliases = {
"lzg" = "lazygit";
};
}; };
} }