infra/nix/home-manager/programs/pass.nix

12 lines
317 B
Nix
Raw Normal View History

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