15 lines
272 B
Nix
15 lines
272 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
programs.git = {
|
|
enable = true;
|
|
userName = "Katherina Walshe-Grey";
|
|
userEmail = "git@qenya.tel";
|
|
extraConfig = {
|
|
init.defaultBranch = "main";
|
|
pull.rebase = true;
|
|
push.autoSetupRemote = true;
|
|
};
|
|
};
|
|
}
|