Added basic git user config

This commit is contained in:
Nickiel12 2022-10-10 17:11:13 -07:00
parent 3f0c292332
commit 40911b6744

10
modules/git.nix Normal file
View file

@ -0,0 +1,10 @@
{ pkgs, ... }:
{
programs.git = {
enable = true;
package = pkgs.gitAndTools.gitFull;
userName = "Nickiel12";
userEmail = "nicholasyoungsumner@gmail.com";
};
}