nixos-configuration/nixosConfigurations/muede-lpt2/hyperhive.nix
2026-06-05 23:04:23 +02:00

21 lines
458 B
Nix

{ hyperhive, ... }:
{
imports = [ hyperhive.nixosModules.default ];
config.services.hyperhive = {
enable = true;
domain = "pr1ma.darkest.space";
hiveName = "pr1ma";
swarmName = "constellation";
matrix = {
enable = true;
gui.enable = true;
serverName = "pr1ma.darkest.space";
};
forge.ci.enable = true;
gateway.localHostsEntry = true;
swarm.peers = {
"umbra.darkest.space" = { };
};
};
}