.files/nix/homeModules/common/gpg.nix

7 lines
132 B
Nix

{ pkgs, ... }:
{
services = {
gpg-agent.defaultCacheTtl = 1209600;
gpg-agent.pinentry.package = pkgs.pinentry-tty;
};
}