Remove the dependency on boringssl

This commit is contained in:
Quentin Boyer 2024-12-30 22:39:02 +01:00
parent 720b7cef6a
commit 0ecc852f37
5 changed files with 10 additions and 442 deletions

View file

@ -15,15 +15,6 @@ with lib; {
};
settings = {
jwtSecret = mkOption {
type = types.nullOr types.str;
default = null;
description = ''
The JWT secret to be used by the application. Should be passed through environmentFile,
with REGALADE_JWT_SECRET.
'';
};
host = mkOption {
type = types.str;
default = "0.0.0.0";
@ -129,7 +120,6 @@ with lib; {
environment =
{
REGALADE_DATABASE_URL = cfg.settings.databaseUrl;
REGALADE_JWT_SECRET = cfg.settings.jwtSecret;
REGALADE_HOST = cfg.settings.host;
REGALADE_PORT = toString cfg.settings.port;
REGALADE_API_ALLOWED = cfg.settings.apiAllowed;