From 3bd99264b9ae19a394d8ca6ae5cf1ef608c48e7d Mon Sep 17 00:00:00 2001 From: gwg313 Date: Thu, 16 Apr 2026 14:26:24 -0400 Subject: [PATCH] fix pass path env var --- modules/features/desktop/pass.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/features/desktop/pass.nix b/modules/features/desktop/pass.nix index e4d3037..391b1b2 100644 --- a/modules/features/desktop/pass.nix +++ b/modules/features/desktop/pass.nix @@ -8,7 +8,7 @@ enable = true; package = pkgs.pass.withExtensions (exts: [ exts.pass-otp ]); settings = { - PASSWORD_STORE_DIR = "$XDG_DATA_HOME/password-store"; + PASSWORD_STORE_DIR = "$HOME/.local/share/password-store"; }; };