From a6d07263c5f6e97bf25716dd146668399f52a99f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?m=C3=BCde?= Date: Fri, 5 Jun 2026 23:04:23 +0200 Subject: [PATCH] enable hyperhive on pc2 --- flake.lock | 16 ++++++++-------- nixosConfigurations/muede-lpt2/hyperhive.nix | 5 +++++ nixosConfigurations/muede-pc2/hyperhive.nix | 5 +++++ 3 files changed, 18 insertions(+), 8 deletions(-) diff --git a/flake.lock b/flake.lock index 76688a5..e2eed97 100644 --- a/flake.lock +++ b/flake.lock @@ -365,11 +365,11 @@ ] }, "locked": { - "lastModified": 1780689304, - "narHash": "sha256-O/2KxJBvp6EDOdLqQZtQ0Dda4cebSd7NWwu08vHCQrE=", + "lastModified": 1780693307, + "narHash": "sha256-yDm1Z01y3gC4/W6ajwTNPX1PQ7Ch3Xi6Pp/ATNoJ3Wg=", "ref": "refs/heads/main", - "rev": "86f0de751ff9066e82dab432547a13bb9d484862", - "revCount": 1676, + "rev": "14c7b0d406b7f9dd38088d41273a8eb146fd6acb", + "revCount": 1683, "type": "git", "url": "https://forge.darkest.space/hyperhive/hyperhive.git" }, @@ -391,11 +391,11 @@ ] }, "locked": { - "lastModified": 1780684306, - "narHash": "sha256-JVWDS10wy9JGcDwW8tWxlG6tHynM8ppAA1T4mbyQ5/E=", + "lastModified": 1780690489, + "narHash": "sha256-dTwwNrwOoz4XeP+LKdxKojhHXmmfb9dc3xLFIZ9Agns=", "ref": "refs/heads/main", - "rev": "5755ffcd96924434a5f70f7255789fae3f4adb7f", - "revCount": 31, + "rev": "0fb143a21caca10bf6137f74d352156a4a0249c6", + "revCount": 33, "type": "git", "url": "https://forge.darkest.space/hyperhive/website.git" }, diff --git a/nixosConfigurations/muede-lpt2/hyperhive.nix b/nixosConfigurations/muede-lpt2/hyperhive.nix index 7857255..2447bb3 100644 --- a/nixosConfigurations/muede-lpt2/hyperhive.nix +++ b/nixosConfigurations/muede-lpt2/hyperhive.nix @@ -5,6 +5,8 @@ config.services.hyperhive = { enable = true; domain = "pr1ma.darkest.space"; + hiveName = "pr1ma"; + swarmName = "constellation"; matrix = { enable = true; gui.enable = true; @@ -12,5 +14,8 @@ }; forge.ci.enable = true; gateway.localHostsEntry = true; + swarm.peers = { + "umbra.darkest.space" = { }; + }; }; } diff --git a/nixosConfigurations/muede-pc2/hyperhive.nix b/nixosConfigurations/muede-pc2/hyperhive.nix index d930b80..719f622 100644 --- a/nixosConfigurations/muede-pc2/hyperhive.nix +++ b/nixosConfigurations/muede-pc2/hyperhive.nix @@ -5,11 +5,16 @@ 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; + swarm.peers = { + "pr1ma.darkest.space" = { }; + }; }; }