Added lazygit

This commit is contained in:
2025-10-19 00:25:08 -04:00
parent 4bd523906c
commit bafe695b96

View File

@@ -3,16 +3,21 @@
... ...
}: }:
{ {
programs.git = { home.packages = with pkgs; [ git-ignore ];
enable = true;
userName = "Eclypsed"; programs = {
userEmail = "Ec1ypsed@proton.me"; git = {
extraConfig = { enable = true;
init = { userName = "Eclypsed";
defaultBranch = "main"; userEmail = "Ec1ypsed@proton.me";
extraConfig = {
init = {
defaultBranch = "main";
};
}; };
}; };
lazygit = {
enable = true;
};
}; };
home.packages = with pkgs; [ git-ignore ];
} }