1 files changed, 1 insertions, 4 deletions
diff --git a/host/Rory-synapse/configuration.nix b/host/Rory-synapse/configuration.nix
index 3baf425..c2806c3 100755
--- a/host/Rory-synapse/configuration.nix
+++ b/host/Rory-synapse/configuration.nix
@@ -99,9 +99,7 @@
registration_shared_secret = builtins.exec ["cat" "/dev/urandom" "|" "tr" "-dc" "a-zA-Z0-9" "|" "fold" "-w" "256" "|" "head" "-n" "1"];
# Alicia - types: https://github.com/NixOS/nixpkgs/blob/release-22.11/nixos/modules/services/matrix/synapse.nix#L410
-
- listeners = {
- [
+ listeners = [
{ port = 8008;
bind_addresses = [ "192.168.1.5" ];
type = "http";
@@ -113,7 +111,6 @@
} ];
}
];
- };
};
plugins = with pkgs.matrix-synapse-plugins; [
|