flakes/modules/user/pass.nix

7 lines
157 B
Nix
Raw Normal View History

2022-01-16 12:41:30 +07:00
{ pkgs, ... }: {
programs.password-store = {
enable = true;
package = pkgs.pass.withExtensions (exts: with exts; [ pass-import pass-otp ]);
};
}