From 8647a124f05277103690475d220a3ab4a216ee60 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Sun, 23 Jun 2024 06:14:25 -0500 Subject: [PATCH] refactor(nix/hm/price): set gpg pinentry mode to `loopback` --- users/price/conf/gpg/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/users/price/conf/gpg/default.nix b/users/price/conf/gpg/default.nix index 17f76b07..542469c9 100644 --- a/users/price/conf/gpg/default.nix +++ b/users/price/conf/gpg/default.nix @@ -11,6 +11,9 @@ trust = "ultimate"; } ]; + settings = { + pinentry-mode = "loopback"; + }; }; services.gpg-agent = { enable = true;