mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
7 lines
192 B
Nix
7 lines
192 B
Nix
{config, ...}: {
|
|
services.gpg-agent.pinentryFlavor = null;
|
|
|
|
home.file."${config.programs.gpg.homedir}/gpg-agent.conf".text = ''
|
|
pinentry-program /opt/homebrew/bin/pinentry-mac
|
|
'';
|
|
}
|