11 lines
233 B
Nix
11 lines
233 B
Nix
{gitProfile, ...}: {
|
|
programs.git = {
|
|
enable = true;
|
|
extraConfig = {
|
|
user.name = "${gitProfile.user}";
|
|
user.email = "${gitProfile.email}";
|
|
init.defaultBranch = "${gitProfile.defaultBranch}";
|
|
};
|
|
};
|
|
}
|