Skip to content

Commit 5f40d80

Browse files
committedNov 30, 2016
matrix-synapse service: add missing $
As-is the generated configuration file will include the line literally.
1 parent 15f6c2d commit 5f40d80

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎nixos/modules/services/misc/matrix-synapse.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ recaptcha_siteverify_api: "https://www.google.com/recaptcha/api/siteverify"
7272
turn_user_lifetime: "${cfg.turn_user_lifetime}"
7373
user_creation_max_duration: ${cfg.user_creation_max_duration}
7474
bcrypt_rounds: ${cfg.bcrypt_rounds}
75-
allow_guest_access: {if cfg.allow_guest_access then "true" else "false"}
75+
allow_guest_access: ${if cfg.allow_guest_access then "true" else "false"}
7676
enable_metrics: ${if cfg.enable_metrics then "true" else "false"}
7777
report_stats: ${if cfg.report_stats then "true" else "false"}
7878
signing_key_path: "/var/lib/matrix-synapse/homeserver.signing.key"

0 commit comments

Comments
 (0)