nixos-config/home-manager/modules/pass.nix
2023-12-29 19:26:11 -05:00

12 lines
222 B
Nix

# ✨ Magical shell history
{pkgs, ...}: {
programs.password-store = {
enable = true;
package = pkgs.pass.withExtensions (exts: [ exts.pass-otp ]);
};
home.packages = with pkgs; [
tessen
zbar
];
}