summaryrefslogtreecommitdiff
path: root/modules/gnupg.nix
blob: a2a2f4586f5f123a23d2bc5e133e20bf876e70b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ config, pkgs, ... }:

{
  environment.systemPackages = with pkgs; [
    gnupg
    opensc

    yubikey-personalization-gui
  ];

  # smartcard support
  services.pcscd.enable = false;
  hardware.gpgSmartcards.enable = true;
  programs.gnupg.agent.enable = true;
}