marleyos/modules/home/programs/gpg.nix
2025-05-27 17:23:47 -07:00

25 lines
468 B
Nix

{
config,
lib,
...
}: let
cfg = config.marleyos.programs.gpg;
in {
options.marleyos.programs.gpg.enable = lib.mkEnableOption "gpg";
config = lib.mkIf cfg.enable {
programs.gpg = {
enable = true;
};
services.gpg-agent = rec {
enable = true;
# Don't ask for the password very often.
defaultCacheTtl = 60480000;
maxCacheTtl = defaultCacheTtl;
pinentryPackage = config.marleycfg.apps.pinentry;
};
};
}