Files
John Lancaster cf2ba8731d reorg
2026-03-11 08:49:07 -05:00

19 lines
419 B
Nix

{
flake.modules.homeManager.git = { config, lib, ... }:
{
programs.git = {
enable = true;
settings = {
credential.helper = "store --file ~/.git-credentials";
init.defaultBranch = "main";
push.autoSetupRemote = true;
};
};
programs.lazygit = {
enable = true;
enableBashIntegration = true;
enableZshIntegration = true;
};
};
}