15 lines
331 B
Nix
15 lines
331 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
home.sessionVariables = {
|
|
# required by pass-otp
|
|
PASSWORD_STORE_EXTENSIONS_DIR =
|
|
"$HOME/.nix-profile/lib/password-store/extensions";
|
|
PASSWORD_STORE_ENABLE_EXTENSIONS = "true";
|
|
};
|
|
|
|
programs.browserpass = { enable = true; };
|
|
|
|
home.packages = with pkgs; [ pass qtpass rofi-pass gnupg ];
|
|
}
|
|
|