nixos-config/home-manager/password.nix

9 lines
173 B
Nix
Raw Normal View History

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