nixos/homeConfig/modules/git/config/git.nix
2023-06-29 09:48:36 -04:00

16 lines
281 B
Nix

{
enable = true;
userName = "Bryan Ramos";
userEmail = "bryan@ramos.codes";
signing.key = "F1F3466458452B2DF351F1E864D12BA95ACE1F2D";
extraConfig = {
init = { defaultBranch = "main"; };
};
ignores = [
"node_modules"
".direnv"
"dist-newstyle"
];
}