dotfiles/modules/services/gpg.nix

12 lines
160 B
Nix

{ config, lib, pkgs, ... }:
{
programs = {
ssh.startAgent = false;
gnupg.agent = {
enable = true;
enableSSHSupport = true;
};
};
}