NixOS-Configs/home/common/gnupg.nix
2024-06-30 09:47:45 -05:00

17 lines
457 B
Nix

{...}: {
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";
};
};
}