NixOS-Configs/home/gnupg.nix
2023-11-08 09:54:46 -06:00

18 lines
473 B
Nix

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