feat(openclaw): enable telegram plugin
Some checks failed
Nix CI / build (push) Failing after 4m14s

This commit is contained in:
rus07tam 2026-04-02 12:39:54 +03:00
parent 2ab6bf19cd
commit 62f154e6ac
No known key found for this signature in database

View file

@ -1,5 +1,8 @@
{ sec, inputs, ... }:
{ {
sec,
inputs,
...
}: {
imports = [ imports = [
inputs.nix-openclaw.homeManagerModules.openclaw inputs.nix-openclaw.homeManagerModules.openclaw
]; ];
@ -30,13 +33,15 @@
channels.telegram = { channels.telegram = {
tokenFile = sec."rus07tam/openclaw/telegramToken".path; tokenFile = sec."rus07tam/openclaw/telegramToken".path;
allowFrom = [ 6146757977 ]; allowFrom = [6146757977];
groups = { groups = {
"*" = { "*" = {
requireMention = true; requireMention = true;
}; };
}; };
}; };
plugins.entries.telegram.enabled = true;
}; };
}; };
}; };