mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-22 12:49:32 -08:00
16 lines
316 B
Nix
16 lines
316 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
programs.git = {
|
|
enable = true;
|
|
package = pkgs.gitAndTools.gitFull;
|
|
userName = "Nickiel12";
|
|
userEmail = "nickiel@nickiel.net";
|
|
extraConfig = {
|
|
pull.rebase = true;
|
|
branch.sort = "-committerdate";
|
|
column.ui = "auto";
|
|
rerere.enabled = true;
|
|
};
|
|
};
|
|
}
|