feat(users/rus07tam): remove openclaw

This commit is contained in:
Rustam Efimov 2026-04-12 17:57:21 +03:00
parent 62f154e6ac
commit 17590915e3
No known key found for this signature in database
4 changed files with 1 additions and 63 deletions

View file

@ -1,6 +0,0 @@
{
imports = [
./secrets.nix
./service.nix
];
}

View file

@ -1,6 +0,0 @@
{
sops.secrets = {
"rus07tam/openclaw/gatewayToken" = { };
"rus07tam/openclaw/telegramToken" = { };
};
}

View file

@ -1,48 +0,0 @@
{
sec,
inputs,
...
}: {
imports = [
inputs.nix-openclaw.homeManagerModules.openclaw
];
programs.openclaw = {
enable = true;
installApp = false;
systemd.enable = true;
bundledPlugins = {
summarize.enable = true;
};
instances.default = {
enable = true;
systemd.enable = true;
config = {
agents.defaults = {
model.primary = "openrouter/qwen/qwen3-coder:free";
sandbox.mode = "off";
};
gateway = {
mode = "local";
auth.token = sec."rus07tam/openclaw/gatewayToken".path;
};
channels.telegram = {
tokenFile = sec."rus07tam/openclaw/telegramToken".path;
allowFrom = [6146757977];
groups = {
"*" = {
requireMention = true;
};
};
};
plugins.entries.telegram.enabled = true;
};
};
};
}