We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Learn more about funding links in repositories.
Report abuse
$
1 parent 15f6c2d commit 5f40d80Copy full SHA for 5f40d80
nixos/modules/services/misc/matrix-synapse.nix
@@ -72,7 +72,7 @@ recaptcha_siteverify_api: "https://www.google.com/recaptcha/api/siteverify"
72
turn_user_lifetime: "${cfg.turn_user_lifetime}"
73
user_creation_max_duration: ${cfg.user_creation_max_duration}
74
bcrypt_rounds: ${cfg.bcrypt_rounds}
75
-allow_guest_access: {if cfg.allow_guest_access then "true" else "false"}
+allow_guest_access: ${if cfg.allow_guest_access then "true" else "false"}
76
enable_metrics: ${if cfg.enable_metrics then "true" else "false"}
77
report_stats: ${if cfg.report_stats then "true" else "false"}
78
signing_key_path: "/var/lib/matrix-synapse/homeserver.signing.key"
0 commit comments