mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2024-11-15 05:13:10 +01:00
15 lines
248 B
Nix
15 lines
248 B
Nix
{ config, ... }:
|
|
{
|
|
programs.gpg = {
|
|
enable = true;
|
|
mutableKeys = true;
|
|
publicKeys = [
|
|
{
|
|
source = ../../../../keys/pgp/rouven.asc;
|
|
trust = 5;
|
|
}
|
|
];
|
|
scdaemonSettings = { disable-ccid = true; };
|
|
};
|
|
}
|