28 lines
419 B
Nix
28 lines
419 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
{
|
|
config = {
|
|
programs = {
|
|
git = {
|
|
enable = true;
|
|
settings = {
|
|
init = {
|
|
defaultBranch = "main";
|
|
};
|
|
user = {
|
|
email = "${config.user.email}";
|
|
name = "${config.user.userName}";
|
|
};
|
|
push = {
|
|
autoSetupRemote = true;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|