Add Swagger to API package

This commit is contained in:
Inex Code
2021-11-16 17:08:58 +03:00
parent b4bc3a4ffc
commit 8b5865c332
5 changed files with 22 additions and 3 deletions

View File

@@ -44,6 +44,13 @@ in
'';
type = types.nullOr types.str;
};
enableSwagger = mkOption {
default = true;
description = ''
Enable Swagger UI
'';
type = types.bool;
};
};
backblaze = {
bucket = mkOption {
@@ -132,7 +139,7 @@ in
};
rootKeys = mkOption {
description = ''
Root SSH Keys
Root SSH Keys
'';
type = types.nullOr (types.listOf types.str);
};