nicks-nix-config/modules/git.nix

15 lines
252 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";
2024-02-17 18:31:54 -08:00
userEmail = "nickiel@nickiel.net";
extraConfig = {
pull.rebase = true;
rerere.enabled = true;
};
2022-10-10 17:11:13 -07:00
};
}