Files
nixos-config/modules/home/git.nix
2026-06-27 14:22:32 +09:00

19 lines
377 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;
push.followTags = true;
};
lfs.enable = true;
};
}