17 lines
265 B
Nix
Executable file
17 lines
265 B
Nix
Executable file
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
programs.git = {
|
|
enable = true;
|
|
extraConfig = {
|
|
color.ui = true;
|
|
core.editor = "hx";
|
|
github.user = "emileclarkb";
|
|
};
|
|
|
|
userName = "Emile Clark-Boman";
|
|
userEmail = "eclarkboman@gmail.com";
|
|
};
|
|
}
|