config.nix/modules/system/git.nix

28 lines
417 B
Nix

{
config,
lib,
pkgs,
...
}:
{
config = {
programs = {
git = {
enable = true;
config = {
init = {
defaultBranch = "main";
};
user = {
email = "${config.user.email}";
name = "${config.user.userName}";
};
push = {
autoSetupRemote = true;
};
};
};
};
};
}