Merge pull request #257887 from yayayayaka/matrix-sliding-sync-fix-missing-mddoc

nixos/matrix-sliding-sync: Fix missing lib.mdDoc
This commit is contained in:
Weijia Wang 2023-09-28 23:19:02 +02:00 committed by GitHub
commit 5c9b48143d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,7 +7,7 @@ in
options.services.matrix-synapse.sliding-sync = { options.services.matrix-synapse.sliding-sync = {
enable = lib.mkEnableOption (lib.mdDoc "sliding sync"); enable = lib.mkEnableOption (lib.mdDoc "sliding sync");
package = lib.mkPackageOption pkgs "matrix-sliding-sync" { }; package = lib.mkPackageOptionMD pkgs "matrix-sliding-sync" { };
settings = lib.mkOption { settings = lib.mkOption {
type = lib.types.submodule { type = lib.types.submodule {
@ -44,7 +44,7 @@ in
}; };
}; };
default = { }; default = { };
description = '' description = lib.mdDoc ''
Freeform environment variables passed to the sliding sync proxy. Freeform environment variables passed to the sliding sync proxy.
Refer to <https://github.com/matrix-org/sliding-sync#setup> for all supported values. Refer to <https://github.com/matrix-org/sliding-sync#setup> for all supported values.
''; '';