mlaga97-nix/home-manager/programs/gpg.nix
2025-07-20 14:58:08 -05:00

17 lines
322 B
Nix

{ ... }: {
programs.gpg = {
enable = true;
mutableKeys = true;
mutableTrust = true;
publicKeys = [
{
source = ../../pubkeys/mlaga97_pubkey_20250524.asc;
trust = 5;
}
{
source = ../../pubkeys/ajfunk27_pubkey_20240129.asc;
trust = 4;
}
];
};
}