19 lines
314 B
Nix
19 lines
314 B
Nix
{
|
|
enable = true;
|
|
userName = "rocketcamel";
|
|
userEmail = "luca_lise@icloud.com";
|
|
signing = {
|
|
signByDefault = true;
|
|
format = "ssh";
|
|
key = "~/.ssh/commits.id_rsa.pub";
|
|
};
|
|
extraConfig = {
|
|
init = {
|
|
defaultBranch = "main";
|
|
};
|
|
push = {
|
|
autoSetupRemote = true;
|
|
};
|
|
};
|
|
}
|