26 lines
659 B
Nix
Raw Normal View History

2024-01-09 23:11:11 -05:00
# GPG is an encryption tool. This isn't really in use for me at the moment.
2024-04-20 09:42:06 -04:00
{
config,
pkgs,
lib,
...
}:
{
2022-05-09 22:55:10 -04:00
2022-12-21 14:18:03 -07:00
options.gpg.enable = lib.mkEnableOption "GnuPG encryption.";
2022-12-21 14:38:34 -07:00
config.home-manager.users.${config.user} = lib.mkIf config.gpg.enable {
2022-05-09 22:55:10 -04:00
programs.gpg.enable = true;
services.gpg-agent = {
enable = true;
defaultCacheTtl = 86400; # Resets when used
defaultCacheTtlSsh = 86400; # Resets when used
maxCacheTtl = 34560000; # Can never reset
maxCacheTtlSsh = 34560000; # Can never reset
pinentryFlavor = "tty";
};
2022-05-22 19:43:46 -04:00
home = lib.mkIf config.gui.enable { packages = with pkgs; [ pinentry ]; };
2022-05-09 22:55:10 -04:00
};
}