From ab3c1bf1cac3f5a0554e4e5a3ed5def94508011e Mon Sep 17 00:00:00 2001 From: alejandro-angulo Date: Sun, 4 May 2025 17:01:45 -0700 Subject: [PATCH] Fixed warning --- modules/home/programs/gpg/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/home/programs/gpg/default.nix b/modules/home/programs/gpg/default.nix index b081fe6..43dab69 100644 --- a/modules/home/programs/gpg/default.nix +++ b/modules/home/programs/gpg/default.nix @@ -34,7 +34,7 @@ in # see here: https://github.com/nix-community/home-manager/issues/3864 services.gpg-agent = mkIf (system == "x86_64-linux") { enable = true; - pinentryPackage = + pinentry.package = if config.${namespace}.windowManagers.sway.enable then pkgs.pinentry-qt else pkgs.pinentry-curses; enableZshIntegration = true; enableSshSupport = true;