diff --git a/modules/tools/password-store/config.el b/modules/tools/password-store/config.el index 63601a23c..934862678 100644 --- a/modules/tools/password-store/config.el +++ b/modules/tools/password-store/config.el @@ -29,14 +29,9 @@ "C-k" #'pass-next-directory)) -(cond ((package-built-in-p 'auth-store-pass) ; built into Emacs 26 - (def-package! auth-store-pass - :demand t - :config (auth-source-pass-enable))) - (t - (def-package! auth-password-store - :demand t - :config (auth-pass-enable)))) +(def-package! auth-password-store + :demand t + :config (auth-pass-enable)) (def-package! helm-pass diff --git a/modules/tools/password-store/packages.el b/modules/tools/password-store/packages.el index bc068d4bb..fe97395c3 100644 --- a/modules/tools/password-store/packages.el +++ b/modules/tools/password-store/packages.el @@ -3,9 +3,7 @@ (package! pass) (package! password-store) - -(unless (package-built-in-p 'auth-store-pass) - (package! auth-password-store)) +(package! auth-password-store) (when (featurep! :completion helm) (package! helm-pass))