this repo has no description
1
fork

Configure Feed

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

git: add `allowed_signers`

Ovyerus 412d1fa9 e868628a

+6 -3
+1
files/git/allowed_signers
··· 1 + ovy@ovyerus.com sk-ssh-ed25519@openssh.com AAAAGnNrLXNzaC1lZDI1NTE5QG9wZW5zc2guY29tAAAAIOIz4psdKMWtvARSsE095N8ERtaH0Gu0VkJSluO5Kd6XAAAABHNzaDo=
+5 -3
home.nix
··· 35 35 36 36 xdg.configFile = { 37 37 "karabiner/assets/complex_modifications/meh.json".source = ./files/karabiner/meh.json; 38 + "git/allowed_signers".source = ./files/git/allowed_signers; 38 39 }; 39 40 40 41 programs.git = { ··· 47 48 extraConfig = { 48 49 pull.rebase = true; 49 50 init.defaultBranch = "main"; 51 + log.showSignature = true; 50 52 53 + gpg.ssh.allowedSignersFile = "~/.config/git/allowed_signers"; 51 54 user.signingKey = "~/.ssh/id_ed25519_sk_rk"; 52 55 gpg.format = "ssh"; 53 56 commit.gpgsign = true; 54 57 tag.gpgsign = true; 55 - 56 - # "gpg \"ssh\"".program = "gfh-keygen"; 57 - # "gpg \"ssh\"".defaultKeyCommand = "gfh"; 58 + # "gpg.ssh.program = "gfh-keygen"; 59 + # "gpg.ssh.defaultKeyCommand = "gfh"; 58 60 }; 59 61 }; 60 62