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

{
  environment.systemPackages = with pkgs; [
    gnupg
    opensc
  ];

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