12 lines
166 B
Nix
12 lines
166 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
programs.git = {
|
|
enable = true;
|
|
extraConfig.pull.rebase = true;
|
|
|
|
userEmail = "your email";
|
|
userName = "your name";
|
|
};
|
|
}
|