nixos-configuration/nixosConfigurations/muede-pc2/hyperhive.nix
2026-06-05 23:12:08 +02:00

23 lines
460 B
Nix

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