13 lines
231 B
Nix
Raw Normal View History

{pkgs, ...}: {
2025-05-19 18:09:05 +02:00
programs.gpg = {
enable = true;
mutableKeys = true;
mutableTrust = true;
};
services.gpg-agent = {
enable = true;
enableSshSupport = true;
pinentry.package = pkgs.pinentry-emacs;
};
}