configuration.nix/home/programs/gnupg.nix
2023-04-07 19:20:39 +05:30

11 lines
184 B
Nix

{ ... }: {
programs.gpg = {
enable = true;
settings = {
keyserver = "hkps://keys.openpgp.org";
};
scdaemonSettings = {
disable-ccid = true;
};
};
}