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

25 lines
368 B
Nix
Raw Normal View History

{ pkgs
, ...
}:
{
home.sessionVariables = {
EDITOR = "nvim";
# 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-otp
qtpass
rofi-pass
];
}