system/machines/modules/gnupg.nix

9 lines
128 B
Nix

{ config, ... }:
{
programs.gnupg.agent = {
enable = true;
enableSSHSupport = config.services.openssh.enable;
};
}