diff options
Diffstat (limited to 'gnu/packages/password-utils.scm')
-rw-r--r-- | gnu/packages/password-utils.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/password-utils.scm b/gnu/packages/password-utils.scm index 1646f1d2a9..7e5d6acbb7 100644 --- a/gnu/packages/password-utils.scm +++ b/gnu/packages/password-utils.scm @@ -1046,8 +1046,10 @@ from the @code{password-store} package. Files are encrypted with the (string-append "OATH=" (assoc-ref inputs "oath-toolkit") - "/bin/oathtool\n"))) - #t))) + "/bin/oathtool\n")) + ;; courtesy: https://github.com/tadfisher/pass-otp/pull/172 + (("&counter=[$]counter" all) + (format #f "~s" all)))))) #:test-target "test")) (inputs (list oath-toolkit)) |