nixos-configuration/nixosConfigurations/muede-lpt2/hyperhive.nix
2026-06-01 00:13:22 +02:00

16 lines
339 B
Nix

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