nixos-config/home/modules/git.nix

18 lines
229 B
Nix
Raw Normal View History

{
inputs,
config,
pkgs,
...
}: {
programs.git = {
enable = true;
2024-07-11 15:28:28 +02:00
userName = "xqtc";
userEmail = "xqtc@tutanota.com";
2024-07-06 16:42:49 +02:00
extraConfig = {
init = {
defaultBranch = "main";
};
};
};
}