this repo has no description
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

add git commit signing

+7 -1
+7 -1
home/profiles/git/default.nix
··· 12 12 userName = "Anish Lakhwara"; 13 13 userEmail = "anish+git@lakhwara.com"; 14 14 delta.enable = true; 15 - # TODO enable signing 15 + signing = { 16 + signByDefault = true; 17 + key = "7FC5DF072EF7B716"; 18 + }; 16 19 17 20 ignores = [ 18 21 "*~" ··· 56 59 pull.rebase = false; 57 60 push.autoSetupRemote = true; 58 61 init.defaultBranch = "main"; 62 + "url \"git@github.com:\"" = { insteadOf = "https://github.com/"; }; 59 63 }; 60 64 61 65 aliases = { ··· 94 98 95 99 # delete merged branches 96 100 bdm = "!git branch --merged | grep -v '*' | xargs -n 1 git branch -d"; 101 + undo = "!git reset HEAD~1 --mixed"; 102 + blm = "blame -w -C -C -C"; 97 103 }; 98 104 }; 99 105 }