diff options
author | Parthiv Seetharaman <pachum99@myrdd.info> | 2022-02-24 17:24:12 -0800 |
---|---|---|
committer | Parthiv Seetharaman <pachum99@myrdd.info> | 2022-02-24 17:40:24 -0800 |
commit | 5b799f539ba56639bedde58bc5d0b92ccb5b70b7 (patch) | |
tree | b2a87dfcf8efdd99e884150186110a25d98606bf | |
parent | b117db436845e8e0667e6f10a2f0c5c397e1b05e (diff) |
README: example wasn't set in the services option
-rw-r--r-- | README.md | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -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; + }; }; }; } |