feat: Remove openclaw
All checks were successful
Flake checker / Build Nix targets (push) Successful in 9m27s

This commit is contained in:
2026-03-11 13:10:56 +05:30
parent 325705f4cb
commit 6bfb3286e3
2 changed files with 0 additions and 35 deletions

View File

@@ -13,7 +13,6 @@
./sops.nix
./sunshine.nix
./tailscale.nix
./openclaw.nix
./yabai.nix
];
}

View File

@@ -1,34 +0,0 @@
{
pkgs,
lib,
config,
...
}: {
nixpkgs.config.permittedInsecurePackages = [
"openclaw-2026.2.26"
];
environment.systemPackages = with pkgs; [
ollama
openclaw
];
launchd.agents.openclaw = {
# enable = true;
script = ''
${lib.getExe pkgs.ollama} launch openclaw --model qwen3.5:9b
'';
# config = {
# Label = "com.openclaw";
# ProgramArguments = [
# "${lib.getExe pkgs.ollama}"
# "launch"
# "openclaw"
# "--model"
# "qwen3.5:9b"
# ];
# RunAtLoad = true;
# KeepAlive = false;
# # StandardOutPath = "${config.home.homeDirectory}/Library/Logs/openclaw.log";
# # StandardErrorPath = "${config.home.homeDirectory}/Library/Logs/openclaw.error.log";
# };
};
}