Files
nixos-config/modules/home/git.nix
2026-05-07 21:05:42 +09:00

17 lines
324 B
Nix

{ ... }:
{
programs.git = {
enable = true;
settings = {
user.name = "minco";
user.email = "mail@drchi.co.kr";
credential.helper = "store";
credential.credentialStore = "store";
init.defaultBranch = "main";
core.editor = "nvim";
push.autoSetupRemote = true;
};
};
}