(desktop) Gen 487: fixed password-store directory issue

This commit is contained in:
pagedMov
2024-10-14 14:36:33 -04:00
parent 694e373b94
commit 8b16ca30b7
5 changed files with 28 additions and 13 deletions

View File

@@ -1,10 +1,13 @@
{ ... }:
{ username, ... }:
let
home = "/home/${username}";
in
{
programs.password-store = {
enable = true;
settings = {
PASSWORD_STORE_DIR = "$XDG_DATA_HOME/.pass";
PASSWORD_STORE_DIR = "${home}/.password-store";
};
};
}