1
1
Fork 0
mirror of https://git.sr.ht/~rouven/nixos-config synced 2025-03-01 04:40:56 +01:00
nixos-config/shared/gpg.nix

9 lines
164 B
Nix

{ config, ... }:
{
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
pinentryFlavor = "gnome3";
};
services.pcscd.enable = true;
}