This commit is contained in:
lsoriano-mcm
2025-06-23 16:46:05 -05:00
parent e8e7b3dd4f
commit cc7aa6df6a
15 changed files with 256 additions and 7 deletions
+10
View File
@@ -0,0 +1,10 @@
{general, ...}: {
programs.git = {
enable = true;
extraConfig = {
user.name = "${general.gitProfile.user}";
user.email = "${general.gitProfile.email}";
init.defaultBranch = "${general.gitProfile.defaultBranch}";
};
};
}