9 lines
173 B
Nix
9 lines
173 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs.password-store = {
|
|
enable = true;
|
|
package = pkgs.pass.withExtensions
|
|
(exts: with exts; [ pass-update pass-file pass-otp ]);
|
|
};
|
|
}
|