user/pass: init

This commit is contained in:
LavaDesu 2022-01-16 12:41:30 +07:00
parent 5faaa432de
commit a568420726
Signed by: cilly
GPG key ID: 6500251E087653C9
3 changed files with 8 additions and 0 deletions

6
modules/user/pass.nix Normal file
View file

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