2018-10-31 19:52:39 +01:00
|
|
|
{ pkgs
|
|
|
|
, ...
|
|
|
|
}:
|
|
|
|
|
|
|
|
{
|
|
|
|
home.sessionVariables = {
|
|
|
|
# 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
|
2018-11-03 19:33:58 +01:00
|
|
|
gnupg
|
2018-10-31 19:52:39 +01:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|