marleyos/modules/home/programs/gpg/default.nix

30 lines
469 B
Nix
Raw Normal View History

2024-11-16 17:26:48 -08:00
{
lib,
config,
namespace,
...
}:
let
inherit (lib) mkIf;
inherit (lib.marleyos) mkEnableModule;
2024-11-16 17:26:48 -08:00
cfg = config.marleyos.programs.gpg;
2024-11-16 17:26:48 -08:00
in
{
2024-11-16 23:05:17 -08:00
options.marleyos = mkEnableModule "programs.gpg";
2024-11-16 17:26:48 -08:00
config = 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;
};
};
}