Test pgp signing in git
This commit is contained in:
parent
c40c291c6e
commit
c09fa88dcc
2 changed files with 8 additions and 1 deletions
|
@ -32,3 +32,8 @@ Repo for nix configuration files
|
||||||
3. `common/dotfiles/neovim.nix` - Change the following:
|
3. `common/dotfiles/neovim.nix` - Change the following:
|
||||||
* `plugins = with pkgs.vimPlugins` - Add your theme under "Themes"
|
* `plugins = with pkgs.vimPlugins` - Add your theme under "Themes"
|
||||||
* `extraConfig` - Change the `colorscheme` section
|
* `extraConfig` - Change the `colorscheme` section
|
||||||
|
|
||||||
|
# GPG Keys
|
||||||
|
1. Import your GPG key `albert.key`
|
||||||
|
2. Add it to your GPG Keyring via `gpg --import albert.key`
|
||||||
|
3. Mark it as ultimately trusted via `gpg --edit-key albert@sysctl.io`, then type `trust`, then `5`
|
|
@ -6,6 +6,8 @@
|
||||||
extraConfig = {
|
extraConfig = {
|
||||||
# core.askPass = "true";
|
# core.askPass = "true";
|
||||||
credential.helper = "cache --timeout=25920000";
|
credential.helper = "cache --timeout=25920000";
|
||||||
|
user.signingkey = "64F6C4EB46C4543A";
|
||||||
|
commit.gpgsign = "true";
|
||||||
alias.a = "add --all";
|
alias.a = "add --all";
|
||||||
alias.ai = "add -i";
|
alias.ai = "add -i";
|
||||||
alias.ap = "apply";
|
alias.ap = "apply";
|
||||||
|
|
Loading…
Reference in a new issue