···131131132132- [mautrix-meta](https://github.com/mautrix/meta), a Matrix <-> Facebook and Matrix <-> Instagram hybrid puppeting/relaybot bridge. Available as services.mautrix-meta
133133134134+- [Jottacloud Command-line Tool](https://docs.jottacloud.com/en/articles/1436834-jottacloud-command-line-tool), a CLI for the [Jottacloud](https://jottacloud.com/) cloud storage provider. Available as [user.services.jotta-cli](#opt-user.services.jotta-cli.enable).
135135+134136- [transfer-sh](https://github.com/dutchcoders/transfer.sh), a tool that supports easy and fast file sharing from the command-line. Available as [services.transfer-sh](#opt-services.transfer-sh.enable).
135137136138- [FCast Receiver](https://fcast.org), an open-source alternative to Chromecast and AirPlay. Available as [programs.fcast-receiver](#opt-programs.fcast-receiver.enable).
···11+# Jottacloud Command-line Tool {#module-services-jotta-cli}
22+33+The [Jottacloud Command-line Tool](https://docs.jottacloud.com/en/articles/1436834-jottacloud-command-line-tool) is a headless [Jottacloud](https://jottacloud.com) client.
44+55+## Quick Start {#module-services-jotta-cli-quick-start}
66+77+```nix
88+{
99+ user.services.jotta-cli.enable = true;
1010+}
1111+```
1212+1313+This adds `jotta-cli` to `environment.systemPackages` and starts a user service that runs `jottad` with the default options.
1414+1515+## Example Configuration {#module-services-jotta-cli-example-configuration}
1616+1717+```nix
1818+user.services.jotta-cli = {
1919+ enable = true;
2020+ options = [ "slow" ];
2121+ package = pkgs.jotta-cli;
2222+};
2323+```
2424+2525+This uses `jotta-cli` and `jottad` from the `pkgs.jotta-cli` package and starts `jottad` in low memory mode.
2626+2727+`jottad` is also added to `environment.systemPackages`, so `jottad --help` can be used to explore options.