My Nix Infra
nix nixos
0
fork

Configure Feed

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

git config to sign commits

ydcjeff 5aad237e adf76f96

+36 -4
+5
config/git/cc
··· 1 1 [core] 2 2 hookspath = ~/cc/www/githooks 3 + 3 4 [user] 4 5 name = De-Cheng Yang 5 6 email = dcyang@cs.nctu.edu.tw 7 + signingkey = ~/.ssh/cc.pub 8 + 9 + [gpg] 10 + format = ssh
+4
config/git/codeberg
··· 1 1 [user] 2 2 name = ydcjeff 3 3 email = ydcjeff@noreply.codeberg.org 4 + signingkey = ~/.ssh/codeberg.pub 5 + 6 + [gpg] 7 + format = ssh
+19 -4
config/git/config
··· 1 + [commit] 2 + gpgSign = true 3 + 1 4 [color] 2 5 ui = true 3 6 ··· 16 19 pruneTags = true 17 20 18 21 [includeIf "hasconfig:remote.*.url:https://gitlab.it.cs.nycu.edu.tw/**"] 19 - path = /home/ydcjeff/.config/git/cc 22 + path = ~/.config/git/cc 23 + 24 + [includeIf "hasconfig:remote.*.url:ssh://git@gitlab.it.cs.nycu.edu.tw/**"] 25 + path = ~/.config/git/cc 20 26 21 27 [includeIf "hasconfig:remote.*.url:https://github.com/**"] 22 - path = /home/ydcjeff/.config/git/gh 28 + path = ~/.config/git/gh 29 + 30 + [includeIf "hasconfig:remote.*.url:ssh://git@github.com/**"] 31 + path = ~/.config/git/gh 23 32 24 33 [includeIf "hasconfig:remote.*.url:https://gitlab.com/**"] 25 - path = /home/ydcjeff/.config/git/gl 34 + path = ~/.config/git/gl 35 + 36 + [includeIf "hasconfig:remote.*.url:ssh://git@gitlab.com/**"] 37 + path = ~/.config/git/gl 26 38 27 39 [includeIf "hasconfig:remote.*.url:https://codeberg.org/**"] 28 - path = /home/ydcjeff/.config/git/codeberg 40 + path = ~/.config/git/codeberg 41 + 42 + [includeIf "hasconfig:remote.*.url:ssh://git@codeberg.org/**"] 43 + path = ~/.config/git/codeberg 29 44 30 45 [init] 31 46 defaultBranch = main
+4
config/git/gh
··· 1 1 [user] 2 2 name = ydcjeff 3 3 email = 32727188+ydcjeff@users.noreply.github.com 4 + signingkey = ~/.ssh/gh.pub 5 + 6 + [gpg] 7 + format = ssh
+4
config/git/gl
··· 1 1 [user] 2 2 name = ydcjeff 3 3 email = 4737464-ydcjeff@users.noreply.gitlab.com 4 + signingkey = ~/.ssh/gl.pub 5 + 6 + [gpg] 7 + format = ssh