nixos-config/modules/workstation/home-manager/gpg.nix

25 lines
513 B
Nix
Raw Normal View History

2024-03-19 21:41:23 +01:00
{ config, lib, pkgs, ... }:
with lib;
{
options.enableGPGKeyring = mkOption {
type = types.bool;
default = true;
example = false;
description = ''
Add GPG keyring and GPG Agent configuration.
'';
};
config = mkIf config.enableGPGKeyring {
programs.gpg.enable = true;
services.gpg-agent = {
enable = true;
enableScDaemon = true;
enableSshSupport = true;
sshKeys = [ "40DE2FEE4D3C5E2C" ];
2024-03-19 21:41:23 +01:00
pinentryPackage = pkgs.pinentry-curses;
};
};
}