2023-02-07 18:24:28 +01:00
|
|
|
{pkgs, ...}: {
|
2023-04-15 12:21:22 +02:00
|
|
|
# required by pass-otp
|
|
|
|
home.sessionVariables.PASSWORD_STORE_EXTENSIONS_DIR = "$HOME/.nix-profile/lib/password-store/extensions";
|
|
|
|
home.sessionVariables.PASSWORD_STORE_ENABLE_EXTENSIONS = "true";
|
2018-10-31 19:52:39 +01:00
|
|
|
|
2023-04-15 12:21:22 +02:00
|
|
|
programs.browserpass.enable = true;
|
2022-10-31 11:04:38 +01:00
|
|
|
|
2023-04-15 12:21:22 +02:00
|
|
|
home.packages = with pkgs; [pass rofi-pass gnupg];
|
2018-10-31 19:52:39 +01:00
|
|
|
}
|