From ecfd3d4c53476885ea3de59b82ccc17a660024b9 Mon Sep 17 00:00:00 2001
From: sternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>
Date: Fri, 16 Apr 2021 18:13:25 +0200
Subject: [PATCH] nixos/services/matrix-synapse: fix eval errors in manual
example
---
nixos/modules/services/misc/matrix-synapse.xml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/nixos/modules/services/misc/matrix-synapse.xml b/nixos/modules/services/misc/matrix-synapse.xml
index 358b631eb485..41a56df0f2b5 100644
--- a/nixos/modules/services/misc/matrix-synapse.xml
+++ b/nixos/modules/services/misc/matrix-synapse.xml
@@ -33,11 +33,11 @@
installation instructions of Synapse .
-{ pkgs, ... }:
+{ pkgs, lib, ... }:
let
fqdn =
let
- join = hostName: domain: hostName + optionalString (domain != null) ".${domain}";
+ join = hostName: domain: hostName + lib.optionalString (domain != null) ".${domain}";
in join config.networking.hostName config.networking.domain;
in {
networking = {
@@ -132,7 +132,7 @@ in {
}
];
};
-};
+}