add hyperhive to pc2

This commit is contained in:
müde 2026-06-05 22:50:31 +02:00
commit 383afd496f
3 changed files with 20 additions and 4 deletions

View file

@ -4,6 +4,7 @@
./hardware.nix
# ./vscode-server.nix
# ./hass.nix
./hyperhive.nix
];
config = {

View file

@ -0,0 +1,15 @@
{ hyperhive, ... }:
{
imports = [ hyperhive.nixosModules.default ];
config.services.hyperhive = {
enable = true;
domain = "umbra.darkest.space";
matrix = {
enable = true;
gui.enable = true;
};
forge.ci.enable = true;
gateway.localHostsEntry = true;
};
}