mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-18 15:34:13 +01:00
21 lines
556 B
Nix
21 lines
556 B
Nix
{
|
|
config,
|
|
username,
|
|
...
|
|
}: let
|
|
homeDir = config.users.users."${username}".home;
|
|
in {
|
|
# https://github.com/LnL7/nix-darwin/blob/master/modules/programs/gnupg.nix
|
|
# try `pkill gpg-agent` if you have issues(such as `no pinentry`)
|
|
programs.gnupg.agent = {
|
|
enable = true;
|
|
enableSSHSupport = false;
|
|
};
|
|
|
|
# enable logs for debugging
|
|
launchd.user.agents.gnupg-agent.serviceConfig = {
|
|
StandardErrorPath = "${homeDir}/Library/Logs/gnupg-agent.stderr.log";
|
|
StandardOutPath = "${homeDir}/Library/Logs/gnupg-agent.stdout.log";
|
|
};
|
|
}
|