nix/modules/programs/git/default.nix

15 lines
199 B
Nix
Raw Normal View History

2024-10-04 18:30:45 +02:00
{
2024-11-08 18:23:40 +01:00
mail,
username,
...
}: {
2024-10-04 22:32:42 +02:00
programs.git = {
2024-09-15 19:26:09 +02:00
enable = true;
2024-11-08 18:23:40 +01:00
userEmail = "${mail.a}";
userName = "${username}";
2024-10-15 20:30:50 +02:00
extraConfig = {
init.defaultBranch = "main";
};
2024-09-15 19:26:09 +02:00
};
}