16 lines
242 B
Nix
16 lines
242 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
programs.git = {
|
|
enable = true;
|
|
userName = "RootHost-Stormwind";
|
|
userEmail = "RootHost-Stormwind@ze.mawtrixx.net";
|
|
extraConfig = {
|
|
init = {
|
|
defaultBranch = "master";
|
|
};
|
|
};
|
|
};
|
|
}
|
|
|