feat(nixosModules/secrets): add secrets for librechat:

This commit is contained in:
Mohammad Rafiq 2025-05-29 20:15:31 +08:00
parent 4c6097903f
commit 68b200175f
No known key found for this signature in database
3 changed files with 20 additions and 3 deletions

View file

@ -11,6 +11,11 @@
"keys/telegram_bot" = { };
"misc/cvt-jira-link" = { };
"rafiq/hashedPassword".neededForUsers = true;
"librechat/creds_key" = { };
"librechat/creds_iv" = { };
"librechat/jwt_secret" = { };
"librechat/jwt_refresh_secret" = { };
"librechat/meili_master_key" = { };
};
};
environment.shellInit = # sh
@ -18,5 +23,10 @@
export GEMINI_API_KEY=$(sudo cat ${config.sops.secrets."keys/gemini".path})
export CVT_JIRA_KEY=$(sudo cat ${config.sops.secrets."keys/cvt-jira".path})
export CVT_JIRA_LINK=$(sudo cat ${config.sops.secrets."misc/cvt-jira-link".path})
export CREDS_KEY=$(sudo cat ${config.sops.secrets."librechat/creds_key".path})
export CREDS_IV=$(sudo cat ${config.sops.secrets."librechat/creds_iv".path})
export JWT_SECRET=$(sudo cat ${config.sops.secrets."librechat/jwt_secret".path})
export JWT_REFRESH_SECRET=$(sudo cat ${config.sops.secrets."librechat/jwt_refresh_secret".path})
export MEILI_MASTER_KEY=$(sudo cat ${config.sops.secrets."librechat/meili_master_key".path})
'';
}