12 lines
144 B
Nix

{
pkgs,
...
}:
{
programs.password-store = {
enable = true;
package = pkgs.pass.withExtensions (exts: [ exts.pass-otp ]);
};
}