From 3093730d549bbdbcfcd684cb8e407a5aed29ff1b Mon Sep 17 00:00:00 2001 From: zuckerberg <5-zuckerberg@users.noreply.git.neet.dev> Date: Fri, 21 May 2021 15:01:05 -0400 Subject: [PATCH] move matrix to riko --- machines/nanachi/configuration.nix | 18 ------------------ machines/riko/configuration.nix | 18 ++++++++++++++++++ 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/machines/nanachi/configuration.nix b/machines/nanachi/configuration.nix index 7d9870e..0676edb 100644 --- a/machines/nanachi/configuration.nix +++ b/machines/nanachi/configuration.nix @@ -30,24 +30,6 @@ mount = "stream.webm"; }; - 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 = "letsencrypt+5@tar.ninja"; diff --git a/machines/riko/configuration.nix b/machines/riko/configuration.nix index f44bc43..caeaea1 100644 --- a/machines/riko/configuration.nix +++ b/machines/riko/configuration.nix @@ -32,4 +32,22 @@ 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"; + }; + }; }