moved gpg conf to shared

This commit is contained in:
Rouven Seifert 2022-12-29 20:48:40 +01:00
parent dcf91b8d59
commit 262ca5c07a
Signed by: rouven.seifert
GPG key ID: B95E8FE6B11C4D09
3 changed files with 23 additions and 29 deletions

8
shared/gpg.nix Normal file
View file

@ -0,0 +1,8 @@
{ config, ... }:
{
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
};
services.pcscd.enable = true;
}