15 lines
202 B
Nix
15 lines
202 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
{
|
|
programs.git = {
|
|
enable = true;
|
|
userName = "KnightArtorias";
|
|
userEmail = "booksandpi@gmail.com";
|
|
extraConfig = {
|
|
init.defaultBranch = "main";
|
|
};
|
|
};
|
|
}
|