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

17 lines
405 B
Nix
Raw Normal View History

2024-11-15 10:17:56 +01:00
{ repoFlake, pkgs, ... }:
2024-02-08 20:53:22 +01:00
{
# required by pass-otp
2024-01-18 14:59:17 +00:00
# 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
2023-11-23 17:52:21 +01:00
# broken on wayland
# rofi-pass
2024-01-18 14:59:17 +00:00
repoFlake.packages.${pkgs.system}.prs
];
}