From 676ec990e1c016cff3309e651b596ce725071406 Mon Sep 17 00:00:00 2001 From: mjallen18 Date: Tue, 17 Mar 2026 19:43:11 -0500 Subject: [PATCH] gpg --- modules/home/gpg/default.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/modules/home/gpg/default.nix b/modules/home/gpg/default.nix index ded3058..8e67de1 100644 --- a/modules/home/gpg/default.nix +++ b/modules/home/gpg/default.nix @@ -3,6 +3,14 @@ programs = { gpg = { enable = true; + settings = { + # Disable keyboxd (GPG 2.4+ default). keyboxd uses a SQLite-backed + # database that gets corrupted easily and is not compatible with the + # classic pubring.kbx format used by gpg-agent. Use the legacy keybox + # format instead, which is stable and works with home-manager's + # publicKeys import mechanism. + no-use-keyboxd = true; + }; scdaemonSettings = { disable-ccid = true; pcsc-shared = true;