initial commit
Some checks failed
Nix CI / build (push) Failing after 31s

This commit is contained in:
Rustam Efimov 2026-04-01 08:50:01 +03:00
commit 30ce0dafc2
No known key found for this signature in database
195 changed files with 8902 additions and 0 deletions

View file

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

View file

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

View file

@ -0,0 +1,37 @@
{ sec, inputs, ... }:
{
imports = [
inputs.nix-openclaw.homeManagerModules.openclaw
];
programs.openclaw = {
enable = true;
installApp = false;
bundledPlugins = {
summarize.enable = true;
};
instances.default = {
enable = true;
systemd.enable = true;
config = {
gateway = {
mode = "local";
auth.token = sec."rus07tam/openclaw/gatewayToken".value;
};
channels.telegram = {
tokenFile = sec."rus07tam/openclaw/telegramToken".path;
allowFrom = [ 6146757977 ];
groups = {
"*" = {
requireMention = true;
};
};
};
};
};
};
}