Compare commits

..

No commits in common. "36ddcf9cc72c827767e820117711da99dea26fdd" and "ee9d6bb43f29242acbfce440799be883af71c6c0" have entirely different histories.

2 changed files with 2 additions and 4 deletions

View file

@ -7,8 +7,8 @@
ccat = "egrep -v '^\s*(#|\\$)'"; ccat = "egrep -v '^\s*(#|\\$)'";
g = "git"; g = "git";
ga = "git add"; ga = "git add";
gc = "git commit -S"; # interactive commit gc = "git commit"; # interactive commit
gcm = "git commit -S -m"; # quick commit gcm = "git commit -m"; # quick commit
gg = "git graph"; gg = "git graph";
gs = "git status"; gs = "git status";
jqless = "jq -C | less -r"; jqless = "jq -C | less -r";

View file

@ -13,10 +13,8 @@
userEmail = lib.mkDefault email; userEmail = lib.mkDefault email;
userName = lib.mkDefault "John Bowdre"; userName = lib.mkDefault "John Bowdre";
extraConfig = { extraConfig = {
gpg.format = "ssh";
init.defaultBranch = "main"; init.defaultBranch = "main";
pull.rebase = false; pull.rebase = false;
user.signingKey = "~/.ssh/id_ed25519.pub";
}; };
}; };
} }