infra: string conversion fix
This commit is contained in:
parent
6d078b3e98
commit
62ba46d201
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ in
|
||||||
wantedBy = [ "multi-user.target" ];
|
wantedBy = [ "multi-user.target" ];
|
||||||
description = "Alisa Backend API Server";
|
description = "Alisa Backend API Server";
|
||||||
environment = {
|
environment = {
|
||||||
DATABASE_URL = "postgres://${user}@localhost:${config.services.postgresql.settings.port}/${user}";
|
DATABASE_URL = ''postgres://${user}@localhost:${builtins.toString config.services.postgresql.settings.port}/${user}'';
|
||||||
TOKEN_SECRET = "secret";
|
TOKEN_SECRET = "secret";
|
||||||
};
|
};
|
||||||
serviceConfig = {
|
serviceConfig = {
|
||||||
|
|
Loading…
Reference in a new issue