added authentication for darwin system

This commit is contained in:
lsoriano-mcm
2025-06-28 19:10:41 -05:00
parent d9128fcf06
commit 6fc18f11a5
8 changed files with 102 additions and 99 deletions
+4 -4
View File
@@ -1,10 +1,10 @@
{general, ...}: {
{myConfig, ...}: {
programs.git = {
enable = true;
extraConfig = {
user.name = "${general.gitProfile.User}";
user.email = "${general.gitProfile.Email}";
init.defaultBranch = "${general.gitProfile.defaultBranch}";
user.name = "${myConfig.general.gitProfile.User}";
user.email = "${myConfig.general.gitProfile.Email}";
init.defaultBranch = "${myConfig.general.gitProfile.defaultBranch}";
};
};
}