update hyperhive, fix warnings

This commit is contained in:
müde 2026-08-05 18:40:31 +02:00
commit cf8114ceb0
2 changed files with 28 additions and 24 deletions

26
flake.lock generated
View file

@ -373,11 +373,11 @@
]
},
"locked": {
"lastModified": 1785876802,
"narHash": "sha256-d3XC74A9pIMsd4A9x22S8nU9hZlFAaY2lKfVboC5i6I=",
"lastModified": 1785946372,
"narHash": "sha256-JrhXaFbDW4KEKmLXb8q3x/D62L3emJw/TxvSvaCKR3k=",
"ref": "refs/heads/main",
"rev": "7a726d1e4e1f88b63b3ada9ff51781e6a2d254ac",
"revCount": 3292,
"rev": "f798662396f8d19f5634b400d0a460103e934d10",
"revCount": 3317,
"type": "git",
"url": "https://forge.darkest.space/hyperhive/hyperhive.git"
},
@ -503,11 +503,11 @@
]
},
"locked": {
"lastModified": 1785812695,
"narHash": "sha256-YKd6efsiKdJ7UOAURH6sanFqv6JXfHIqxXVC4kuDppc=",
"lastModified": 1785898908,
"narHash": "sha256-UPMYwEyyh6QhbnXyIlpIi0H9454Ow/eOOOSkRx3Hxkk=",
"owner": "nix-community",
"repo": "nix-vscode-extensions",
"rev": "2ae89c3de613fb717a8e5e43e20b6603c4dd63cc",
"rev": "b510fc22aa22ad079592c5adb46d547a37def055",
"type": "github"
},
"original": {
@ -679,11 +679,11 @@
]
},
"locked": {
"lastModified": 1785893934,
"narHash": "sha256-JBDZjDt9yzaWNDHmGRGHKG7Te795D6hUwdnifKWz/+E=",
"lastModified": 1785944985,
"narHash": "sha256-PMcEXUdzVtXFUThHwjnK3pGtcOPE3uNKfOd6oON093k=",
"owner": "nix-community",
"repo": "NUR",
"rev": "cab901c3b16f0a039db833d20b50a7e1ad7b31b6",
"rev": "09ca0ebbc7f35b626aabad5a4d31f12b2f049776",
"type": "github"
},
"original": {
@ -992,11 +992,11 @@
]
},
"locked": {
"lastModified": 1785360170,
"narHash": "sha256-XE1lKgQ3eIO3E7zWryqcRsax+mYXod/5RHBn4YaR9YE=",
"lastModified": 1785945821,
"narHash": "sha256-NLSyTCW4K4ofhNBllt3omPasm6QpralXH1DBZOc91Dw=",
"owner": "numtide",
"repo": "treefmt-nix",
"rev": "d1187f8bc71fb8aab02395869ec3f5c1920f75c0",
"rev": "ae7910970dddc408fe6ab1c8e4b277bb21d72dc0",
"type": "github"
},
"original": {

View file

@ -33,17 +33,12 @@ in
config.services.hyperhive = lib.mkIf cfg.enable {
enable = true;
swarmName = "constellation";
ruthless = true;
domain = "${cfg.hiveName}.darkest.space";
hiveName = cfg.hiveName;
matrix.enable = true;
forge.ci.enable = true;
gateway = {
localHostsEntry = true;
openFirewall = true;
};
swarm.peers = {
swarm = {
name = "constellation";
domain = "constellation.darkest.space";
enableRequiredServices = true;
forge.ci.enable = true;
peers = {
"umbra.darkest.space" = {
certFingerprint = "sha256:ae68d089e0155978fff7a9963bfb1e123ed645e7c9f93a4b4bb3e278c5f32a27";
};
@ -51,6 +46,14 @@ in
certFingerprint = "sha256:63e026f8682d6b5496f3eec99edb2ef62a8999c6d767228051e6e057f8cd90c6";
};
};
};
ruthless = true;
domain = "${cfg.hiveName}.darkest.space"; # backcompat not a subdomain
hiveName = cfg.hiveName;
gateway = {
localHostsEntry = true;
openFirewall = true;
};
otel = {
enable = true;
endpoint = "https://exponentials.vibec0re.mov/otel";
@ -60,6 +63,7 @@ in
inherit adminUsers;
agentMemoryMax = "6G";
claudeCodePackage = pkgs.unstable.claude-code;
buildSlots = 2;
};
};