2024-11-16 17:26:48 -08:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
config,
|
|
|
|
...
|
2025-01-13 21:05:10 -08:00
|
|
|
}: let
|
2024-11-16 22:34:40 -08:00
|
|
|
cfg = config.marleyos.programs.gpg;
|
2025-01-13 21:05:10 -08:00
|
|
|
in {
|
|
|
|
options.marleyos.programs.gpg.enable = lib.mkEnableOption "gpg";
|
2024-11-16 17:26:48 -08:00
|
|
|
|
2025-01-13 21:05:10 -08:00
|
|
|
config = lib.mkIf cfg.enable {
|
2024-11-16 17:26:48 -08:00
|
|
|
programs.gpg = {
|
|
|
|
enable = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
services.gpg-agent = rec {
|
|
|
|
enable = true;
|
|
|
|
|
|
|
|
# Don't ask for the password very often.
|
|
|
|
defaultCacheTtl = 60480000;
|
|
|
|
maxCacheTtl = defaultCacheTtl;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|