diff --git a/hosts/lazyworkhorse/configuration.nix b/hosts/lazyworkhorse/configuration.nix index 6f02a2b..91dc793 100644 --- a/hosts/lazyworkhorse/configuration.nix +++ b/hosts/lazyworkhorse/configuration.nix @@ -144,6 +144,7 @@ # You can use https://Search.nixos.org/ to find more packages (and options). environment.systemPackages = with pkgs; [ neovim + tmux docker-compose wget age @@ -256,12 +257,6 @@ # }; }; - services.opencode = { - enable = true; - port = 4099; - ollamaUrl = "http://127.0.0.1:11434/v1"; - }; - # Private host ssh key managed by agenix age = { identityPaths = paths.identities; @@ -311,16 +306,6 @@ }; }; - # OpenClaw Node service (host-side execution for Docker gateway) - services.openclaw-node = { - enable = true; - user = "ai-worker"; - gatewayHost = "127.0.0.1"; - gatewayPort = 18789; - gatewayTokenFile = "/run/secrets/openclaw_gateway_token"; - displayName = "lazyworkhorse-host"; - }; - # Public host ssh key (kept in sync with the private one) environment.etc."ssh/ssh_host_ed25519_key.pub".text = "${keys.hosts.lazyworkhorse.main}";