16 lines
286 B
Nix
16 lines
286 B
Nix
{ ... }:
|
|
|
|
{
|
|
programs.git = {
|
|
enable = true;
|
|
userName = "minco";
|
|
userEmail = "mail@drchi.co.kr";
|
|
extraConfig = {
|
|
credential.helper = "store";
|
|
credential.credentialStore = "store";
|
|
init.defaultBranch = "main";
|
|
core.editor = "nvim";
|
|
};
|
|
};
|
|
}
|