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

9 lines
133 B
Nix
Raw Normal View History

2022-12-29 20:48:40 +01:00
{ config, ... }:
{
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
};
services.pcscd.enable = true;
}