updates server nix

This commit is contained in:
Dennis Schoepf 2025-10-30 13:08:30 +01:00
parent 4457852393
commit c3dcd2a83a

View file

@ -32,11 +32,26 @@
programs.git = { programs.git = {
enable = true; enable = true;
userName = "Dennis Schoepf"; settings = {
userEmail = "me@dnsc.io"; init = {
extraConfig = { defaultBranch = "main";
};
core = {
ignorecase = "false";
};
pull = { pull = {
rebase = true; rebase = false;
};
push = {
autoSetupRemote = true;
};
user = {
name = "Dennis Schoepf";
email = "me@dnsc.io";
}; };
}; };
}; };