···131132- [mautrix-meta](https://github.com/mautrix/meta), a Matrix <-> Facebook and Matrix <-> Instagram hybrid puppeting/relaybot bridge. Available as services.mautrix-meta
13300134- [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).
135136- [FCast Receiver](https://fcast.org), an open-source alternative to Chromecast and AirPlay. Available as [programs.fcast-receiver](#opt-programs.fcast-receiver.enable).
···131132- [mautrix-meta](https://github.com/mautrix/meta), a Matrix <-> Facebook and Matrix <-> Instagram hybrid puppeting/relaybot bridge. Available as services.mautrix-meta
133134+- [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).
135+136- [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).
137138- [FCast Receiver](https://fcast.org), an open-source alternative to Chromecast and AirPlay. Available as [programs.fcast-receiver](#opt-programs.fcast-receiver.enable).
···1+# Jottacloud Command-line Tool {#module-services-jotta-cli}
2+3+The [Jottacloud Command-line Tool](https://docs.jottacloud.com/en/articles/1436834-jottacloud-command-line-tool) is a headless [Jottacloud](https://jottacloud.com) client.
4+5+## Quick Start {#module-services-jotta-cli-quick-start}
6+7+```nix
8+{
9+ user.services.jotta-cli.enable = true;
10+}
11+```
12+13+This adds `jotta-cli` to `environment.systemPackages` and starts a user service that runs `jottad` with the default options.
14+15+## Example Configuration {#module-services-jotta-cli-example-configuration}
16+17+```nix
18+user.services.jotta-cli = {
19+ enable = true;
20+ options = [ "slow" ];
21+ package = pkgs.jotta-cli;
22+};
23+```
24+25+This uses `jotta-cli` and `jottad` from the `pkgs.jotta-cli` package and starts `jottad` in low memory mode.
26+27+`jottad` is also added to `environment.systemPackages`, so `jottad --help` can be used to explore options.