From 172482823c91d92dacc4a250d9b95948289cae85 Mon Sep 17 00:00:00 2001 From: Bryan Ramos Date: Wed, 24 Jan 2024 21:28:50 -0500 Subject: [PATCH] fix gpg? --- homeConfig/modules/bash/default.nix | 1 - homeConfig/modules/gpg/default.nix | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/homeConfig/modules/bash/default.nix b/homeConfig/modules/bash/default.nix index f3369b1..42f3d27 100644 --- a/homeConfig/modules/bash/default.nix +++ b/homeConfig/modules/bash/default.nix @@ -17,7 +17,6 @@ in shellAliases = import ./config/alias.nix; }; - services.gpg-agent.enableBashIntegration = true; programs = { direnv = { enable = true; diff --git a/homeConfig/modules/gpg/default.nix b/homeConfig/modules/gpg/default.nix index 47c6d45..a441700 100644 --- a/homeConfig/modules/gpg/default.nix +++ b/homeConfig/modules/gpg/default.nix @@ -19,6 +19,7 @@ in services.gpg-agent = { enable = true; enableSshSupport = true; + enableBashIntegration = true; }; }; }