Added lazygit to git file and added alias

This commit is contained in:
2024-02-13 08:58:16 -04:00
parent 86dbe25525
commit 9f2e31f15b
2 changed files with 11 additions and 2 deletions

View File

@@ -8,7 +8,6 @@
ollama ollama
# Development # Development
lazygit
mprocs mprocs
tokei tokei

View File

@@ -1,5 +1,11 @@
{pkgs, ...}: { {pkgs, ...}: {
home.packages = [pkgs.gh]; home.packages = with pkgs; [
gh
];
programs.lazygit = {
enable = true;
};
programs.git = { programs.git = {
enable = true; enable = true;
@@ -7,4 +13,8 @@
userName = "Thomas Syms"; userName = "Thomas Syms";
userEmail = "thomassyms@gmail.com"; userEmail = "thomassyms@gmail.com";
}; };
home.shellAliases = {
lgit = "lazygit";
};
} }