1 files changed, 2 insertions, 2 deletions
diff --git a/module.nix b/module.nix
index c64329e..897a6c4 100644
--- a/module.nix
+++ b/module.nix
@@ -51,13 +51,13 @@ in
maxFileSize = lib.mkOption {
type = lib.types.int;
default = 8192000;
- description = "Max size of files to bridge. Defaults to 8MB."
+ description = "Max size of files to bridge. Defaults to 8MB.";
};
exposeUserIds = lib.mkOption {
type = lib.types.bool;
default = true;
- description = "Whether to put Discord user IDs in the mxids, ie. @_ooye_123123123_username:rory.gay"
+ description = "Whether to put Discord user IDs in the mxids, ie. @_ooye_123123123_username:rory.gay";
};
enableSynapseIntegration = lib.mkEnableOption "Enable Synapse integration";
|