From 3e6621fa2aba16a95c21647adf22bcb609169e82 Mon Sep 17 00:00:00 2001 From: Bryan Ramos Date: Fri, 24 Jan 2025 16:18:45 -0500 Subject: [PATCH] removed conditional wm check on pgp pub keys --- src/user/modules/security/modules/gpg/default.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/user/modules/security/modules/gpg/default.nix b/src/user/modules/security/modules/gpg/default.nix index 463b99b..9930a14 100644 --- a/src/user/modules/security/modules/gpg/default.nix +++ b/src/user/modules/security/modules/gpg/default.nix @@ -22,7 +22,6 @@ in text = "${config.user.keys.pgp.windows}"; trust = 5; } - ] ++ (if wm.sway.enable then [ { text = "${config.user.keys.pgp.work}"; trust = 5; @@ -31,7 +30,7 @@ in text = "${config.user.keys.pgp.ccur}"; trust = 5; } - ] else []); + ]; }; services.gpg-agent = {