xin/configs/git.nix

76 lines
1.9 KiB
Nix
Raw Normal View History

2023-09-12 08:44:05 -06:00
{ config, ... }:
let
2023-07-11 09:12:50 -06:00
rewriteGitHub =
if config.networking.hostName != "stan"
then {
2023-09-12 08:44:05 -06:00
url = { "ssh://git@github.com/" = { insteadOf = "https://github.com/"; }; };
2023-07-11 09:12:50 -06:00
}
else {
2023-09-12 08:44:05 -06:00
url = { };
2023-07-11 09:12:50 -06:00
};
2023-09-12 08:44:05 -06:00
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-09-12 08:44:05 -06:00
{ init = { defaultBranch = "main"; }; }
{ advice.detachedHead = false; }
{
user = {
name = "Aaron Bieber";
email = "aaron@bolddaemon.com";
2023-11-15 17:19:01 -07:00
signingKey = "key::ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOA5iEi4IxSIHXBMdrRlBWHbGtmMNnmBl4qiBPc+eJu9 signer";
};
}
2022-08-25 12:21:35 -06:00
2023-09-12 08:44:05 -06:00
{ branch = { sort = "-committerdate"; }; }
{
alias = {
log = "log --color=never";
diff = "diff --color=always";
2024-04-11 10:05:37 -06:00
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-09-12 08:44:05 -06:00
{ push = { default = "current"; }; }
2022-08-25 12:21:35 -06:00
2023-09-12 08:44:05 -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-09-12 08:44:05 -06:00
{ safe = { directory = "/home/qbit/src/nix-conf"; }; }
2022-08-25 12:21:35 -06:00
2023-09-12 08:44:05 -06:00
{ transfer = { fsckobjects = true; }; }
{ fetch = { fsckobjects = true; }; }
{ github = { user = "qbit"; }; }
2022-08-25 12:21:35 -06:00
2023-09-12 08:44:05 -06:00
{ inherit (rewriteGitHub) url; }
2022-08-25 12:21:35 -06:00
{
sendemail = {
smtpserver = "mail.messagingengine.com";
smtpuser = "qbit@fastmail.com";
smtpauth = "PLAIN";
smtpencryption = "tls";
smtpserverport = 587;
cc = "git@bolddaemon.com";
confirm = "auto";
};
}
2022-08-25 12:21:35 -06:00
2023-09-12 08:44:05 -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
};
}