nixos-config/home-manager/password.nix

8 lines
139 B
Nix
Raw Normal View History

2024-02-13 15:30:26 -05:00
{ pkgs, ... }:
{
programs.password-store = {
enable = true;
package = pkgs.pass.withExtensions (exts: [ exts.pass-otp ]);
};
}