nixos/nixos/modules/gpg.nix

11 lines
142 B
Nix

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