nixos-config/users/rouven/modules/gpg/default.nix
2023-05-19 11:42:43 +02:00

15 lines
240 B
Nix

{ ... }:
{
programs.gpg = {
enable = true;
mutableKeys = true;
publicKeys = [
{
source = ../../../../keys/pgp/rouven.asc;
trust = 5;
}
];
scdaemonSettings = { disable-ccid = true; };
};
}