12 lines
215 B
Nix
12 lines
215 B
Nix
{ ... }:
|
|
{
|
|
programs.git = {
|
|
enable = true;
|
|
userName = "Benjamin Palko";
|
|
userEmail = "Benjaminpalko@hotmail.com";
|
|
};
|
|
programs.gh = {
|
|
enable = true;
|
|
gitCredentialHelper.enable = true;
|
|
};
|
|
}
|