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