13 lines
219 B
Nix
13 lines
219 B
Nix
# ✨ password manager
|
|
{ pkgs, ... }:
|
|
{
|
|
programs.password-store = {
|
|
enable = true;
|
|
package = pkgs.pass.withExtensions (exts: [ exts.pass-otp ]);
|
|
};
|
|
|
|
home.packages = with pkgs; [
|
|
tessen
|
|
zbar
|
|
];
|
|
}
|