Temporarily replace pinentry-rofi with curses
diff --git a/modules/gpg.nix b/modules/gpg.nix
index e68557d..4d8a297 100644
--- a/modules/gpg.nix
+++ b/modules/gpg.nix
@@ -6,10 +6,13 @@
     programs.gpg.enable = true;
     services.gpg-agent = {
       enable = true;
-      extraConfig = ''
-        pinentry-program ${pkgs.pinentry-rofi}/bin/pinentry-rofi
-      '';
-      pinentryFlavor = null;
+      /* extraConfig = '' */
+      /*   default-cache-ttl 86400 */
+      /*   max-cache-ttl 86400 */
+      /*   pinentry-program ${pkgs.pinentry-rofi}/bin/pinentry-rofi */
+      /*   auto-expand-secmem */
+      /* ''; */
+      pinentryFlavor = "curses";
     };
   };