summary refs log tree commit diff stats
path: root/hm/gpg
diff options
context:
space:
mode:
Diffstat (limited to 'hm/gpg')
-rw-r--r--hm/gpg/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/hm/gpg/default.nix b/hm/gpg/default.nix
new file mode 100644
index 0000000..aecb4d4
--- /dev/null
+++ b/hm/gpg/default.nix
@@ -0,0 +1,26 @@
+{
+  pkgs,
+  lib,
+  ...
+}: {
+  programs.gpg = {
+    enable = true;
+  };
+  services.gpg-agent = {
+    enable = true;
+    defaultCacheTtl = 60 * 5;
+    defaultCacheTtlSsh = 60 * 5;
+    pinentryPackage = pkgs.pinentry-curses;
+    enableSshSupport = true;
+    sshKeys = ["4077454831C98FE4BE4A9C167186C5A63615B790"];
+  };
+  programs.zsh.initExtraFirst = lib.mkBefore ''
+    current_tty="$(tty)"
+    tty() { echo "$current_tty"; }
+    SSH_AUTH_SOCK=$(gpgconf --list-dirs agent-ssh-socket)
+    gpg-connect-agent /bye
+  '';
+  home.sessionVariables = {
+    GNUPGHOME = lib.mkForce "";
+  };
+}