mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-22 20:59:32 -08:00
11 lines
216 B
Nix
11 lines
216 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
programs.git = {
|
|
enable = true;
|
|
package = pkgs.gitAndTools.gitFull;
|
|
userName = "Nickiel12";
|
|
userEmail = "nicholasyoungsumner@gmail.com";
|
|
extraConfig.pull.rebase = true;
|
|
};
|
|
}
|