15 lines
240 B
Nix
15 lines
240 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs = {
|
|
password-store = {
|
|
enable = true;
|
|
package = pkgs.pass.withExtensions (exts: [ exts.pass-otp ]);
|
|
};
|
|
|
|
browserpass = {
|
|
enable = true;
|
|
browsers = [ "firefox" ];
|
|
};
|
|
|
|
};
|
|
}
|