flakes/modules/user/pass.nix
2022-01-17 11:31:20 +07:00

6 lines
157 B
Nix

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