update hyperhive
This commit is contained in:
parent
cf8114ceb0
commit
3e34428b5d
4 changed files with 32 additions and 17 deletions
14
flake.lock
generated
14
flake.lock
generated
|
|
@ -373,11 +373,11 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1785946372,
|
"lastModified": 1785968564,
|
||||||
"narHash": "sha256-JrhXaFbDW4KEKmLXb8q3x/D62L3emJw/TxvSvaCKR3k=",
|
"narHash": "sha256-FokM9AdU8uxkJvdhniqfZNMHO/gEwWlfRcqRzWI1BQo=",
|
||||||
"ref": "refs/heads/main",
|
"ref": "refs/heads/main",
|
||||||
"rev": "f798662396f8d19f5634b400d0a460103e934d10",
|
"rev": "31e47632f441adab9040e741530233ebd9211c34",
|
||||||
"revCount": 3317,
|
"revCount": 3334,
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://forge.darkest.space/hyperhive/hyperhive.git"
|
"url": "https://forge.darkest.space/hyperhive/hyperhive.git"
|
||||||
},
|
},
|
||||||
|
|
@ -679,11 +679,11 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1785944985,
|
"lastModified": 1785966723,
|
||||||
"narHash": "sha256-PMcEXUdzVtXFUThHwjnK3pGtcOPE3uNKfOd6oON093k=",
|
"narHash": "sha256-77PN8w/GMo5ANgo0LFco+ipKv2fjIxhWqa0amYPJdI8=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "NUR",
|
"repo": "NUR",
|
||||||
"rev": "09ca0ebbc7f35b626aabad5a4d31f12b2f049776",
|
"rev": "766ca0dad1dc0e5a408f1f3c2540eb008d5e34f1",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,6 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
hiveName = "pr1ma";
|
hiveName = "pr1ma";
|
||||||
};
|
};
|
||||||
services.hyperhive.forge.ci.concurrency = 2;
|
services.hyperhive.enableAllLocalDefaults = true;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -48,7 +48,7 @@
|
||||||
];
|
];
|
||||||
|
|
||||||
my.constellation-swarm = {
|
my.constellation-swarm = {
|
||||||
enable = true;
|
enable = false;
|
||||||
hiveName = "umbra";
|
hiveName = "umbra";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -37,18 +37,33 @@ in
|
||||||
name = "constellation";
|
name = "constellation";
|
||||||
domain = "constellation.darkest.space";
|
domain = "constellation.darkest.space";
|
||||||
enableRequiredServices = true;
|
enableRequiredServices = true;
|
||||||
forge.ci.enable = true;
|
forge = {
|
||||||
peers = {
|
# not default - still on hive domain
|
||||||
"umbra.darkest.space" = {
|
domain = "forge.pr1ma.darkest.space";
|
||||||
certFingerprint = "sha256:ae68d089e0155978fff7a9963bfb1e123ed645e7c9f93a4b4bb3e278c5f32a27";
|
ci = {
|
||||||
|
enable = true;
|
||||||
|
concurrency = 2;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
"pr1ma.darkest.space" = {
|
matrix = {
|
||||||
certFingerprint = "sha256:63e026f8682d6b5496f3eec99edb2ef62a8999c6d767228051e6e057f8cd90c6";
|
# not default - both still on hive domain
|
||||||
|
gatewayHost = "matrix.pr1ma.darkest.space";
|
||||||
|
serverName = "pr1ma.darkest.space";
|
||||||
|
};
|
||||||
|
hives = {
|
||||||
|
"umbra" = {
|
||||||
|
# not default - still not subdomain
|
||||||
|
domain = "umbra.darkest.space";
|
||||||
|
certFingerprint = "sha256:ae68d089e0155978fff7a9963bfb1e123ed645e7c9f93a4b4bb3e278c5f32a27";
|
||||||
|
};
|
||||||
|
"pr1ma" = {
|
||||||
|
# not default - still not subdomain
|
||||||
|
domain = "pr1ma.darkest.space";
|
||||||
|
certFingerprint = "sha256:63e026f8682d6b5496f3eec99edb2ef62a8999c6d767228051e6e057f8cd90c6";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
|
||||||
};
|
};
|
||||||
ruthless = true;
|
ruthless = true;
|
||||||
domain = "${cfg.hiveName}.darkest.space"; # backcompat not a subdomain
|
|
||||||
hiveName = cfg.hiveName;
|
hiveName = cfg.hiveName;
|
||||||
gateway = {
|
gateway = {
|
||||||
localHostsEntry = true;
|
localHostsEntry = true;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue