19 lines
285 B
Nix
19 lines
285 B
Nix
{
|
|
programs.git = {
|
|
enable = true;
|
|
config = [
|
|
{
|
|
user = {
|
|
name = "Kyle Isom";
|
|
email = "kyle@imap.cc";
|
|
};
|
|
init = {
|
|
defaultBranch = "master";
|
|
};
|
|
}
|
|
|
|
{ push = { default = "current"; }; }
|
|
];
|
|
};
|
|
}
|