about summary refs log tree commit diff
path: root/config/gnupg/gpg-agent.conf.nix
blob: 36b2f196bfa442f608346f44cff86db6fdf76ac1 (plain) (blame)
1
2
3
4
5
6
7
8
9
{ stdenv, lib, pinentry_mac }:

''
${lib.optionalString stdenv.isDarwin ''
  pinentry-program ${lib.concatStringsSep "/"
    [ pinentry_mac "Applications" "pinentry-mac.app" "Contents" "MacOS"
      "pinentry-mac" ]}
''}
''