nixos-configuration/nixosConfigurations/muede-lpt2/hyperhive.nix
2026-05-31 17:30:12 +02:00

15 lines
311 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";
};
gateway.localHostsEntry = true;
};
}