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

18 lines
362 B
Nix
Raw Normal View History

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