From 5a7bde83e57e67735787d7f23f4afc82a4d2de9f Mon Sep 17 00:00:00 2001 From: Crony Akatsuki Date: Mon, 1 Sep 2025 10:02:17 +0200 Subject: [PATCH] feat(destop): add pass. --- modules/cross-platform/home-manager/shell.nix | 8 ++++++++ 1 file changed, 8 insertions(+) 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]); + }; }; }