home | added suppoort for gpg

This commit is contained in:
Don Harper 2023-11-08 09:54:46 -06:00
parent c39710a9f1
commit 85bca1bd3e
2 changed files with 19 additions and 0 deletions

18
home/gnupg.nix Normal file
View file

@ -0,0 +1,18 @@
{ config, pkgs, ... }:
{
programs.gpg = {
enable = true;
settings = {
keyserver = "hkp://keys.gnupg.net";
cert-digest-algo = "SHA256";
no-emit-version = "";
#no-comments = "";
personal-cipher-preferences = "AES AES256 AES192 CAST5";
personal-digest-preferences = "SHA256 SHA512 SHA384 SHA224";
#ignore-time-conflict = "";
#allow-freeform-uid = "";
#utf8-strings
auto-key-locate = "local";
};
};
}

View file

@ -4,6 +4,7 @@
./bash_complition.nix
./btop.nix
./git.nix
./gnupg.nix
#./khal.nix
./khard.nix
./lf.nix