git config

This commit is contained in:
Benjamin Palko 2024-07-15 21:38:21 -04:00
parent 3caf6e9a67
commit 4f6a0c34d5
2 changed files with 13 additions and 4 deletions

12
home-manager/git.nix Normal file
View file

@ -0,0 +1,12 @@
{ ... }:
{
programs.git = {
enable = true;
userName = "Benjamin Palko";
userEmail = "Benjaminpalko@hotmail.com";
};
programs.gh = {
enable = true;
gitCredentialHelper.enable = true;
};
}