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