From 1fa35228b026f2e37ab39182d8b6a52fbb598ef6 Mon Sep 17 00:00:00 2001 From: Giulio De Pasquale Date: Mon, 23 Aug 2021 20:02:08 +0200 Subject: [PATCH] default rooms for matrix, fixed dns entries --- hosts/architect/matrix.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/hosts/architect/matrix.nix b/hosts/architect/matrix.nix index f9fc309..12711cd 100644 --- a/hosts/architect/matrix.nix +++ b/hosts/architect/matrix.nix @@ -14,8 +14,10 @@ with import ./network.nix; app_service_config_files = [ "/var/lib/matrix-synapse/discord-registration.yaml" ]; extraConfig = '' auto_join_rooms: - - "#infrastruttura:matrix.giugl.io" + - "#infra:matrix.giugl.io" - "#general:matrix.giugl.io" + - "#gaming:matrix.giugl.io" + - "#movies:matrix.giugl.io" ''; listeners = [ { @@ -104,11 +106,10 @@ with import ./network.nix; }; networking.extraHosts = '' - 127.0.0.1 ${matrixdomain} - ${architect-lan} ${matrixdomain} - ${architect-wg} ${matrixdomain} + 127.0.0.1 ${matrixdomain} ${matrixwebdomain} + ${architect-lan} ${matrixdomain} ${matrixwebdomain} + ${architect-wg} ${matrixdomain} ${matrixwebdomain} ''; users.groups.acme.members = [ "turnserver" ]; } -