mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 00:29:43 -04:00
33 lines
548 B
Nix
33 lines
548 B
Nix
{
|
|
userName = "Bryan Ramos";
|
|
userEmail = "bryan@ramos.codes";
|
|
signing = {
|
|
key = "F1F3466458452B2DF351F1E864D12BA95ACE1F2D";
|
|
signByDefault = true;
|
|
};
|
|
|
|
extraConfig = {
|
|
init = { defaultBranch = "master"; };
|
|
mergetool = {
|
|
lazygit = {
|
|
cmd = "lazygit";
|
|
trustExitCode = true;
|
|
};
|
|
};
|
|
merge = {
|
|
tool = "lazygit";
|
|
};
|
|
safe = {
|
|
directory = "/etc/nixos";
|
|
};
|
|
};
|
|
|
|
ignores = [
|
|
"node_modules"
|
|
".direnv"
|
|
"dist-newstyle"
|
|
".nuxt/"
|
|
".output/"
|
|
"dist"
|
|
];
|
|
}
|