diff --git a/modules/tools/password-store/config.el b/modules/tools/password-store/config.el index 4e593fa36..d3c6a357c 100644 --- a/modules/tools/password-store/config.el +++ b/modules/tools/password-store/config.el @@ -28,3 +28,7 @@ (require 'auth-store-pass) (auth-source-pass-enable))) + +(def-package! helm-pass + :when (featurep! :completion helm) + :commands helm-pass) diff --git a/modules/tools/password-store/packages.el b/modules/tools/password-store/packages.el index 14f6ca468..6defc2fb1 100644 --- a/modules/tools/password-store/packages.el +++ b/modules/tools/password-store/packages.el @@ -3,3 +3,6 @@ (package! password-store) (package! pass) + +(when (featurep! :completion helm) + (package! helm-pass))