nixfleet/users/profiles/git/default.nix
2021-09-29 21:37:59 +02:00

22 lines
393 B
Nix

{
programs.git = {
enable = true;
extraConfig = {
pull.rebase = false;
};
userName = "aciceri";
userEmail = "andrea.ciceri@autistici.org";
signing = {
signByDefault = true;
key = "andrea.ciceri@autistici.org";
};
extraConfig = {
url = {
"ssh://git@github.com/" = { insteadOf = https://github.com/; };
};
};
};
}