nix/nixos/gnupg.nix

15 lines
140 B
Nix

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