infra/nix/home-manager/programs/pass.nix
2024-02-08 21:04:39 +01:00

20 lines
420 B
Nix

{
repoFlake,
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;
home.packages = with pkgs; [
gnupg
pass
# broken on wayland
# rofi-pass
repoFlake.packages.${pkgs.system}.prs
];
}