This commit is contained in:
Spotlight 2023-05-13 15:49:10 -05:00
parent 0624af1db9
commit 974c703031
Signed by: spotlight
GPG key ID: 874AA355B3209BDC

View file

@ -1,4 +1,4 @@
{ config, pkgs, ... }:
{ config, lib, pkgs, ... }:
# In order to allow reuse of the iTerm2 shell integrations repo
# for both its utility symlinks and zsh initialization plugin,
@ -49,6 +49,15 @@ in {
init.defaultBranch = "main";
};
};
# GPG
programs.gpg.enable = true;
home.file.".gnupg/gpg-agent.conf" = lib.mkIf pkgs.stdenv.isDarwin {
text = ''
pinentry-program "${pkgs.pinentry_mac}/Applications/pinentry-mac.app/Contents/MacOS/pinentry-mac"
'';
};
# password-store
programs.password-store = {
enable = true;