nix-conf/system/modules/git.nix
2024-12-17 00:14:52 +08:00

13 lines
175 B
Nix

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