system/machines/modules/gnupg.nix

9 lines
128 B
Nix
Raw Normal View History

2022-10-12 02:56:07 +03:00
{ config, ... }:
{
programs.gnupg.agent = {
enable = true;
enableSSHSupport = config.services.openssh.enable;
};
}