vuls: init at 0.27.0
[NixPkgs.git] / nixos / modules / services / networking / jotta-cli.md
blob335e5c8e38563ce6315b31e8a993cd967f404a4c
1 # Jottacloud Command-line Tool {#module-services-jotta-cli}
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.
5 ## Quick Start {#module-services-jotta-cli-quick-start}
7 ```nix
9   services.jotta-cli.enable = true;
11 ```
13 This adds `jotta-cli` to `environment.systemPackages` and starts a user service that runs `jottad` with the default options.
15 ## Example Configuration {#module-services-jotta-cli-example-configuration}
17 ```nix
18 services.jotta-cli = {
19   enable = true;
20   options = [ "slow" ];
21   package = pkgs.jotta-cli;
23 ```
25 This uses `jotta-cli` and `jottad` from the `pkgs.jotta-cli` package and starts `jottad` in low memory mode.
27 `jottad` is also added to `environment.systemPackages`, so `jottad --help` can be used to explore options.