configuration.nix/home/programs/gnupg.nix

12 lines
182 B
Nix
Raw Normal View History

2023-05-18 16:11:26 +05:30
{...}: {
2023-04-07 19:09:05 +05:30
programs.gpg = {
enable = true;
settings = {
keyserver = "hkps://keys.openpgp.org";
};
scdaemonSettings = {
disable-ccid = true;
};
};
}