Add pass-otp extension
This commit is contained in:
parent
72414df076
commit
48324900b8
|
@ -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;
|
||||
|
|
|
@ -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";
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue