16 lines
264 B
Nix
16 lines
264 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";
|
|
};
|
|
};
|
|
}
|