Add pass-otp

This commit is contained in:
Sam W 2022-03-29 00:06:08 +01:00
parent 6a29bb367a
commit 55e75c2314
1 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,7 @@
{ ... }: { { pkgs, ... }: {
programs.password-store = { programs.password-store = {
enable = true; enable = true;
settings = { PASSWORD_STORE_DIR = "$HOME/.password-store"; }; settings = { PASSWORD_STORE_DIR = "$HOME/.password-store"; };
package = pkgs.pass.withExtensions (exts: [ exts.pass-otp ]);
}; };
} }