all repos — nixfiles @ 0741f0290ee5e7082ff421921583ff9ad8ec6f1e

System and user configuration, managed by nix and home-manager

reformat all nix code

Alan Pearce
commit

0741f0290ee5e7082ff421921583ff9ad8ec6f1e

parent

83d9e0536997ccea2dde49e63d0f0f458f56ee61

1 file changed, 7 insertions(+), 8 deletions(-)

changed files
M user/settings/gnupg.nixuser/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; }; }