marleyos/modules/home/programs/gpg/default.nix
punkfairie 15372b7726
feat: ${namespace} -> marleyos
There was little point to doing this anyway as project-wide find &
replace is trivial.
2024-11-16 22:36:34 -08:00

29 lines
460 B
Nix

{
lib,
config,
namespace,
...
}:
let
inherit (lib) mkIf;
inherit (lib.marleyos) mkEnableModule;
cfg = config.marleyos.programs.gpg;
in
{
options = mkEnableModule "programs.gpg";
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;
};
};
}