summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorParthiv Seetharaman <pachum99@myrdd.info>2022-02-24 17:24:12 -0800
committerParthiv Seetharaman <pachum99@myrdd.info>2022-02-24 17:40:24 -0800
commit5b799f539ba56639bedde58bc5d0b92ccb5b70b7 (patch)
treeb2a87dfcf8efdd99e884150186110a25d98606bf
parentb117db436845e8e0667e6f10a2f0c5c397e1b05e (diff)
README: example wasn't set in the services option
-rw-r--r--README.md10
1 files changed, 6 insertions, 4 deletions
diff --git a/README.md b/README.md
index 9648f05..7f28e9e 100644
--- a/README.md
+++ b/README.md
@@ -16,10 +16,12 @@ For example, here is how you would setup mautrix-whatsapp:
{ pkgs, ... }:
{
services.matrix-appservices = {
- whatsapp = {
- port = 29183;
- format = "mautrix-go";
- package = pkgs.mautrix-whatsapp;
+ services = {
+ whatsapp = {
+ port = 29183;
+ format = "mautrix-go";
+ package = pkgs.mautrix-whatsapp;
+ };
};
};
}