b869120287
Replace container-flake (feat/o4dev branch) dependency with oparic-flakes (main) + direct o4dev service inputs. Container is now built via mkOparicContainer with local config and secrets.
25 lines
440 B
Nix
25 lines
440 B
Nix
{
|
|
domainSuffix = "oparic.luo.ee";
|
|
dataDir = "/data";
|
|
|
|
backend = {
|
|
port = 54289;
|
|
chatApiBaseUrl = "https://api.deepseek.com/v1";
|
|
suggestTitleModel = "deepseek-chat";
|
|
};
|
|
|
|
applogGateway = {
|
|
port = 9100;
|
|
};
|
|
|
|
clickhouse = {
|
|
httpPort = 8123;
|
|
database = "oparic_applog";
|
|
};
|
|
|
|
admin = {
|
|
basicauthUser = "admin";
|
|
basicauthHash = "$2a$14$oeoymHjMd5cPY3jWtbLax.Uyo4nvNLf/CbnbbjwclfYDhEzfBmc1C";
|
|
};
|
|
}
|