17 lines
408 B
Nix
17 lines
408 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 = [
|
|
pkgs.gnupg
|
|
|
|
# broken on wayland
|
|
# rofi-pass
|
|
|
|
(pkgs.callPackage repoFlake.lib.prsFn {
|
|
})
|
|
];
|
|
}
|