From 02f3fd50e1e465bce8357d3304b31d71cd7bf6fc Mon Sep 17 00:00:00 2001 From: zuckerberg <5-zuckerberg@users.noreply.git.neet.dev> Date: Fri, 27 Aug 2021 14:43:50 -0400 Subject: [PATCH] migrate matrix --- machines/liza/configuration.nix | 18 ++++++++++++++++++ machines/riko/configuration.nix | 18 ------------------ 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/machines/liza/configuration.nix b/machines/liza/configuration.nix index c2e1903..43abc4b 100644 --- a/machines/liza/configuration.nix +++ b/machines/liza/configuration.nix @@ -126,6 +126,24 @@ }; }; + services.matrix = { + enable = true; + host = "neet.space"; + enable_registration = false; + element-web = { + enable = true; + host = "chat.neet.space"; + }; + jitsi-meet = { + enable = true; + host = "meet.neet.space"; + }; + turn = { + host = "turn.neet.space"; + secret = "a8369a0e96922abf72494bb888c85831b"; + }; + }; + security.acme.acceptTerms = true; security.acme.email = "zuckerberg@neet.dev"; } diff --git a/machines/riko/configuration.nix b/machines/riko/configuration.nix index bd3cc26..b4f0d1f 100644 --- a/machines/riko/configuration.nix +++ b/machines/riko/configuration.nix @@ -31,22 +31,4 @@ enableACME = true; forceSSL = true; }; - - services.matrix = { - enable = true; - host = "neet.space"; - enable_registration = false; - element-web = { - enable = true; - host = "chat.neet.space"; - }; - jitsi-meet = { - enable = true; - host = "meet.neet.space"; - }; - turn = { - host = "turn.neet.space"; - secret = "a8369a0e96922abf72494bb888c85831b"; - }; - }; }