From 474d10bdc4ddc64882284b7342a891e756047946 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?m=C3=BCde?= Date: Mon, 27 Jul 2026 18:42:34 +0200 Subject: [PATCH] hive use unstable claude --- flake.lock | 14 +++++++------- nixosModules/constellation-swarm.nix | 8 ++++++-- 2 files changed, 13 insertions(+), 9 deletions(-) diff --git a/flake.lock b/flake.lock index d2e231e..b0a9254 100644 --- a/flake.lock +++ b/flake.lock @@ -380,11 +380,11 @@ ] }, "locked": { - "lastModified": 1785139861, - "narHash": "sha256-Ua1nyDpMgWdC6wIx8Damb+5itPw1XdBgH85mKtJhZa8=", + "lastModified": 1785153389, + "narHash": "sha256-7HnlwDiRpw4wpkpyWWp8INisINTmLnOABbLiZ1MSny4=", "ref": "refs/heads/main", - "rev": "80650041d91c6126125e9c73da33a585d32d3bd1", - "revCount": 2965, + "rev": "896dfc6194c3ffdf92f2c553a49bfef999b6aad0", + "revCount": 2982, "type": "git", "url": "https://forge.darkest.space/hyperhive/hyperhive.git" }, @@ -722,11 +722,11 @@ ] }, "locked": { - "lastModified": 1785138165, - "narHash": "sha256-JMQ1L59Z4M0KPKou9gS+rbYYhGEXIGtdPTX0kbbRx2o=", + "lastModified": 1785153025, + "narHash": "sha256-ubyziylgBIw321CEpkexuP32X2i/whn0LJHNhjWIldY=", "owner": "nix-community", "repo": "NUR", - "rev": "15544328ef656ca54155e43fc73fb664e5b993c8", + "rev": "8f3b21ed289d13c395a82f0dde06fb5ddf6f5078", "type": "github" }, "original": { diff --git a/nixosModules/constellation-swarm.nix b/nixosModules/constellation-swarm.nix index 5e8c96b..9919cea 100644 --- a/nixosModules/constellation-swarm.nix +++ b/nixosModules/constellation-swarm.nix @@ -1,5 +1,6 @@ { hyperhive, + pkgs, lib, config, ... @@ -40,7 +41,10 @@ in endpoint = "https://exponentials.vibec0re.mov/otel"; headersCredential = "/etc/hyperhive/otel-cred"; }; - c0re.adminUsers = ["muede"]; - c0re.agentMemoryMax = "6G"; + c0re = { + adminUsers = ["muede"]; + agentMemoryMax = "6G"; + claudeCodePackage = pkgs.unstable.claude-code; + }; }; }