Adds git config as home manager module

This commit is contained in:
Dennis Schoepf 2025-01-24 21:49:00 +01:00
parent 636416fdbe
commit 5a9ad9bbd1

View file

@ -0,0 +1,25 @@
{
programs.git = {
enable = true;
userName = "Dennis Schoepf";
userEmail = "me@dnsc.io";
ignores = [ ".DS_Store" ];
extraConfig = {
init = {
defaultBranch = "main";
};
core = {
ignorecase = "false";
};
pull = {
rebase = false;
};
push = {
autoSetupRemote = true;
};
};
};
}