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