nixos-laptop/home/git/default.nix

13 lines
203 B
Nix
Raw Normal View History

2023-10-08 14:57:57 +00:00
{
config = {
programs.git = {
enable = true;
userName = "Pim Kunis";
userEmail = "pim@kunis.nl";
extraConfig = {
push.autoSetupRemote = true;
};
};
};
}