dotfiles/modules/services/gpg.nix

13 lines
192 B
Nix
Raw Normal View History

2022-01-24 12:40:44 +01:00
{ config, lib, pkgs, ... }:
{
programs = {
ssh.startAgent = false;
gnupg.agent = {
2022-01-24 12:40:44 +01:00
enable = true;
enableSSHSupport = true;
2022-01-24 12:40:44 +01:00
};
};
services.pcscd.enable = true;
}