From 6bfb3286e36b6f1be008e4cdd35ffa3af47bc481 Mon Sep 17 00:00:00 2001 From: servius Date: Wed, 11 Mar 2026 13:10:56 +0530 Subject: [PATCH] feat: Remove openclaw --- darwin/shiro/services/default.nix | 1 - darwin/shiro/services/openclaw.nix | 34 ------------------------------ 2 files changed, 35 deletions(-) delete mode 100644 darwin/shiro/services/openclaw.nix diff --git a/darwin/shiro/services/default.nix b/darwin/shiro/services/default.nix index 64bdc0b2..abf6a3ce 100644 --- a/darwin/shiro/services/default.nix +++ b/darwin/shiro/services/default.nix @@ -13,7 +13,6 @@ ./sops.nix ./sunshine.nix ./tailscale.nix - ./openclaw.nix ./yabai.nix ]; } diff --git a/darwin/shiro/services/openclaw.nix b/darwin/shiro/services/openclaw.nix deleted file mode 100644 index d1e6256f..00000000 --- a/darwin/shiro/services/openclaw.nix +++ /dev/null @@ -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"; - # }; - }; -}