nix/modules/home-manager/pass.nix
2024-01-05 13:23:43 -06:00

7 lines
135 B
Nix

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