nixos-config/users/rouven/modules/gpg/default.nix

15 lines
240 B
Nix
Raw Normal View History

2023-05-19 11:42:43 +02:00
{ ... }:
2023-01-06 22:39:08 +01:00
{
programs.gpg = {
enable = true;
mutableKeys = true;
publicKeys = [
{
source = ../../../../keys/pgp/rouven.asc;
trust = 5;
}
];
scdaemonSettings = { disable-ccid = true; };
};
}