nixos-config/modules/user/git/default.nix

13 lines
217 B
Nix

{ ... }:
{
programs.git = {
enable = true;
userName = "Mohamed C.";
userEmail = "mohamed@chrayed.de";
extraConfig = {
init.defaultBranch = "main";
core.editor = "re.sonny.Commit";
};
};
}