This commit is contained in:
biscuit
2025-06-20 08:58:14 -05:00
parent bc70242a99
commit 2d8ba9f7ea
8 changed files with 45 additions and 16 deletions
+9 -2
View File
@@ -1,3 +1,10 @@
{ ... }: {
programs.git.enable = true;
{gitProfile, ...}: {
programs.git = {
enable = true;
extraConfig = {
user.name = "${gitProfile.user}";
user.email = "${gitProfile.email}";
init.defaultBranch = "${gitProfile.defaultBranch}";
};
};
}