home | refactor

This commit is contained in:
Don Harper 2024-01-06 14:02:54 -06:00
parent 672d71a83a
commit 73fadb981d
468 changed files with 197 additions and 210 deletions

18
home/common/gnupg.nix Normal file
View file

@ -0,0 +1,18 @@
{ ... }:
{
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";
};
};
}