29 lines
467 B
Nix
Executable file
29 lines
467 B
Nix
Executable file
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
programs.git = {
|
|
enable = true;
|
|
extraConfig = {
|
|
color.ui = true;
|
|
core.editor = "hx";
|
|
github.user = "emileclarkb";
|
|
|
|
init = {
|
|
defaultBranch = "main";
|
|
};
|
|
url = {
|
|
"https://github.com/" = {
|
|
insteadOf = [
|
|
"gh:"
|
|
"github:"
|
|
];
|
|
};
|
|
};
|
|
};
|
|
|
|
userName = "Emile Clark-Boman";
|
|
userEmail = "eclarkboman@gmail.com";
|
|
};
|
|
}
|