git and gpg config

This commit is contained in:
Rouven Seifert 2023-01-06 22:39:08 +01:00
parent 79c06a749a
commit 06ab8644cd
Signed by: rouven.seifert
GPG key ID: B95E8FE6B11C4D09
4 changed files with 22 additions and 2 deletions

View file

@ -0,0 +1,14 @@
{ config, ... }:
{
programs.gpg = {
enable = true;
mutableKeys = true;
publicKeys = [
{
source = ../../../../keys/pgp/rouven.asc;
trust = 5;
}
];
scdaemonSettings = { disable-ccid = true; };
};
}