modules.services.missgram: fix

This commit is contained in:
2025-12-28 17:13:39 +08:00
parent 3a34d1e962
commit 1de9f717ab
2 changed files with 4 additions and 6 deletions

View File

@@ -45,13 +45,12 @@ inputs:
{
Secret = placeholder."missgram/secret";
TelegramBotToken = placeholder."missgram/telegramBotToken";
TelegramChatId = placeholder."missgram/telegramChatId";
TelegramChatId = -1003641252872;
ServerPort = 9173;
dbPassword = placeholder."postgresql/missgram";
};
};
secrets = inputs.lib.genAttrs' [ "secret" "telegramBotToken" "telegramChatId" ]
(n: inputs.lib.nameValuePair "missgram/${n}" {});
secrets = { "missgram/secret" = {}; "missgram/telegramBotToken" = {}; };
};
};
};