changes to new git config style

This commit is contained in:
Dennis 2025-10-23 08:41:56 +02:00
parent 4bc03130ff
commit bc1654ca08

View file

@ -1,10 +1,7 @@
{
programs.git = {
enable = true;
userName = "Dennis Schoepf";
userEmail = "me@dnsc.io";
ignores = [ ".DS_Store" ];
extraConfig = {
settings = {
init = {
defaultBranch = "main";
};
@ -20,6 +17,12 @@
push = {
autoSetupRemote = true;
};
user = {
name = "Dennis Schoepf";
email = "me@dnsc.io";
};
};
ignores = [ ".DS_Store" ];
};
}