xin/configs/git.nix

75 lines
1.9 KiB
Nix
Raw Normal View History

2023-07-11 09:12:50 -06:00
{config, ...}: let
rewriteGitHub =
if config.networking.hostName != "stan"
then {
url = {"ssh://git@github.com/" = {insteadOf = "https://github.com/";};};
}
else {
url = {};
};
in {
2022-08-25 12:21:35 -06:00
programs.git = {
enable = true;
lfs.enable = true;
2023-06-13 14:32:00 -06:00
config = [
2023-07-11 09:12:50 -06:00
{init = {defaultBranch = "main";};}
{advice.detachedHead = false;}
{
user = {
name = "Aaron Bieber";
email = "aaron@bolddaemon.com";
2023-07-11 09:12:50 -06:00
signingKey = "key::sk-ssh-ed25519@openssh.com AAAAGnNrLXNzaC1lZDI1NTE5QG9wZW5zc2guY29tAAAAIB1cBO17AFcS2NtIT+rIxR2Fhdu3HD4de4+IsFyKKuGQAAAACnNzaDpsZXNzZXI=";
};
}
2022-08-25 12:21:35 -06:00
2023-07-11 09:12:50 -06:00
{branch = {sort = "-committerdate";};}
{
alias = {
log = "log --color=never";
diff = "diff --color=always";
pr = ''"!f() { git fetch-pr upstream $1; git checkout pr/$1; }; f"'';
fetch-pr = ''
"!f() { git fetch $1 refs/pull/$2/head:refs/remotes/pr/$2; }; f"'';
};
}
2023-07-11 09:12:50 -06:00
{push = {default = "current";};}
2022-08-25 12:21:35 -06:00
2023-07-11 09:12:50 -06:00
{gpg = {format = "ssh";};}
{commit = {gpgsign = true;};}
2022-08-25 12:21:35 -06:00
{
color = {
branch = false;
interactive = false;
log = false;
status = false;
ui = false;
};
}
2022-08-25 12:21:35 -06:00
2023-07-11 09:12:50 -06:00
{safe = {directory = "/home/qbit/src/nix-conf";};}
2022-08-25 12:21:35 -06:00
2023-07-11 09:12:50 -06:00
{transfer = {fsckobjects = true;};}
{fetch = {fsckobjects = true;};}
{github = {user = "qbit";};}
2022-08-25 12:21:35 -06:00
2023-07-11 09:12:50 -06:00
{inherit (rewriteGitHub) url;}
2022-08-25 12:21:35 -06:00
{
sendmail = {
smtpserver = "mail.messagingengine.com";
smtpuser = "qbit@fastmail.com";
smtpauth = "PLAIN";
smtpencryption = "tls";
smtpserverport = 587;
cc = "aaron@bolddaemon.com";
confirm = "auto";
};
}
2022-08-25 12:21:35 -06:00
2023-07-11 09:12:50 -06:00
{pull = {rebase = false;};}
{include = {path = "~/work/git/gitconfig";};}
2023-06-13 14:32:00 -06:00
];
2022-08-25 12:21:35 -06:00
};
}