diff options
| author | Alejandro Soto <alejandro@34project.org> | 2024-07-25 22:04:33 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2024-07-25 22:04:33 -0600 |
| commit | 277e0c36a00e018a0090a984af934165be704aaa (patch) | |
| tree | 5294d4cb7d044f95363fd9e57ec21317a37a1052 /home/pass.nix | |
| parent | 159da68b0a68d36fd07bdf833ab604711aebfef5 (diff) | |
home/pass: implement pass-bcr
Diffstat (limited to '')
| -rw-r--r-- | home/pass.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/home/pass.nix b/home/pass.nix index 54b3ff6..cc05869 100644 --- a/home/pass.nix +++ b/home/pass.nix @@ -2,12 +2,14 @@ with lib; { config.programs.password-store = mkIf (!config.home.isolation.active) { enable = true; - package = pkgs.pass.withExtensions (exts: with exts; [ + package = pkgs.pass.withExtensions (exts: (with exts; [ pass-audit pass-genphrase pass-otp pass-tomb pass-update + ]) ++ [ + pkgs.local.pass-bcr ]); settings = { |
