nixfiles/common/gpg.nix
2025-03-19 17:17:51 +00:00

9 lines
113 B
Nix

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