13 lines
175 B
Nix
13 lines
175 B
Nix
{ ... }:
|
|
|
|
{
|
|
programs.git.config = {
|
|
init = {
|
|
defaultBranch = "main";
|
|
};
|
|
pull.rebase = true;
|
|
user.name = "DACHXY";
|
|
user.email = "Danny10132024@gmail.com";
|
|
};
|
|
|
|
}
|