nix-config/modules/home-manager/terminal/gpg.nix
2024-03-31 16:23:56 -05:00

14 lines
149 B
Nix

{
config,
pkgs,
lib,
...
}: {
programs.gpg.enable = true;
services.gpg-agent = {
enable = true;
enableSshSupport = true;
};
}