reformat all nix code
1 file changed, 7 insertions(+), 8 deletions(-)
changed files
M user/settings/gnupg.nix → user/settings/gnupg.nix
@@ -1,7 +1,9 @@ -{ config -, pkgs -, ... -}: { +{ + config, + pkgs, + ... +}: +{ programs.gpg = { enable = true; homedir = "${config.xdg.dataHome}/gnupg";@@ -11,9 +13,6 @@ }; }; services.gpg-agent = { enable = true; - pinentryPackage = with pkgs; - if stdenv.isDarwin - then pinentry_mac - else pinentry-qt; + pinentryPackage = with pkgs; if stdenv.isDarwin then pinentry_mac else pinentry-qt; }; }