diff --git a/flake.lock b/flake.lock index fe2972b..76688a5 100644 --- a/flake.lock +++ b/flake.lock @@ -365,11 +365,11 @@ ] }, "locked": { - "lastModified": 1780687857, - "narHash": "sha256-4XX2q6fb4Y7UvkjqzfyUsoO1a5Nsl0Uu39hwG3ZU3v0=", + "lastModified": 1780689304, + "narHash": "sha256-O/2KxJBvp6EDOdLqQZtQ0Dda4cebSd7NWwu08vHCQrE=", "ref": "refs/heads/main", - "rev": "d25f2779e80e82b4a128c4b8cb9c5a4e57e69d52", - "revCount": 1674, + "rev": "86f0de751ff9066e82dab432547a13bb9d484862", + "revCount": 1676, "type": "git", "url": "https://forge.darkest.space/hyperhive/hyperhive.git" }, diff --git a/nixosConfigurations/muede-pc2/default.nix b/nixosConfigurations/muede-pc2/default.nix index 42f77b3..ff00c41 100644 --- a/nixosConfigurations/muede-pc2/default.nix +++ b/nixosConfigurations/muede-pc2/default.nix @@ -4,6 +4,7 @@ ./hardware.nix # ./vscode-server.nix # ./hass.nix + ./hyperhive.nix ]; config = { diff --git a/nixosConfigurations/muede-pc2/hyperhive.nix b/nixosConfigurations/muede-pc2/hyperhive.nix new file mode 100644 index 0000000..d930b80 --- /dev/null +++ b/nixosConfigurations/muede-pc2/hyperhive.nix @@ -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; + }; +}