nicks-nix-config/modules/git.nix

12 lines
216 B
Nix
Raw Normal View History

2022-10-10 17:11:13 -07:00
{ pkgs, ... }:
{
programs.git = {
enable = true;
package = pkgs.gitAndTools.gitFull;
userName = "Nickiel12";
userEmail = "nicholasyoungsumner@gmail.com";
2023-03-17 15:25:07 -07:00
extraConfig.pull.rebase = true;
2022-10-10 17:11:13 -07:00
};
}