diff --git a/modules/cross-platform/home-manager/shell.nix b/modules/cross-platform/home-manager/shell.nix index 712c5b7..a840d5e 100644 --- a/modules/cross-platform/home-manager/shell.nix +++ b/modules/cross-platform/home-manager/shell.nix @@ -146,5 +146,13 @@ filter_mode = "directory"; }; }; + + programs.password-store = { + enable = true; + settings = { + PASSWORD_STORE_DIR = "${config.home.homeDirectory}/.password-store"; + }; + package = pkgs.pass.withExtensions (exts: [exts.pass-import exts.pass-update exts.pass-genphrase exts.pass-file exts.pass-audit]); + }; }; }