Add pass-otp extension

This commit is contained in:
Evie Litherland-Smith 2023-08-28 16:45:38 +01:00
parent 72414df076
commit 48324900b8
2 changed files with 2 additions and 2 deletions

View file

@ -32,7 +32,6 @@ in {
home.packages = with pkgs; [ libsForQt5.polkit-kde-agent configure-gtk ];
programs = {
emacs.package = pkgs.emacs29-pgtk;
password-store.package = pkgs.pass-wayland;
firefox.package = pkgs.firefox-wayland;
rofi = {
package = pkgs.rofi-wayland;

View file

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