coded@shorthair: add gpg, home: use tty pinentry

Change-Id: I55b85bacc44a98caf1c30411632c19835cb225d8
Reviewed-on: https://git.clicks.codes/c/Chimera/NixFiles/+/411
Reviewed-by: Skyler Grey <minion@clicks.codes>
Tested-by: Samuel Shuert <coded@clicks.codes>
diff --git a/homes/x86_64-linux/coded@shorthair/default.nix b/homes/x86_64-linux/coded@shorthair/default.nix
index 21ce924..e06745b 100644
--- a/homes/x86_64-linux/coded@shorthair/default.nix
+++ b/homes/x86_64-linux/coded@shorthair/default.nix
@@ -47,6 +47,8 @@
       gitReview.enable = true;
       gitCrypt.enable = true;
       auth.clicksUsername = "coded";
+
+      gpg.enable = true;
     };
 
     hyprland = {
diff --git a/modules/home/gpg/default.nix b/modules/home/gpg/default.nix
index f17ef2f..475c0a9 100644
--- a/modules/home/gpg/default.nix
+++ b/modules/home/gpg/default.nix
@@ -13,7 +13,7 @@
     programs.gpg.enable = true;
     services.gpg-agent = {
       enable = true;
-      pinentryFlavor = "curses";
+      pinentryFlavor = "tty";
       enableZshIntegration = config.chimera.shell.zsh.enable;
       enableBashIntegration = config.chimera.shell.bash.enable;
     };