about summary refs log tree commit diff
path: root/nixos/modules/services/networking/jotta-cli.md
diff options
context:
space:
mode:
authorEven Brenden <evenbrenden@users.noreply.github.com>2024-05-05 19:25:40 +0200
committerEven Brenden <evenbrenden@users.noreply.github.com>2024-05-05 19:30:16 +0200
commit9fa89d0e2c7a485dd4a75c99a105b3138a5b20e9 (patch)
treed1dd162a038e82b457d2366dee2d2c873570e100 /nixos/modules/services/networking/jotta-cli.md
parent390e4745e7636ab37707b4148d98b9632ac35d29 (diff)
nixos/jotta-cli: move to services.jotta-cli
Diffstat (limited to 'nixos/modules/services/networking/jotta-cli.md')
-rw-r--r--nixos/modules/services/networking/jotta-cli.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/services/networking/jotta-cli.md b/nixos/modules/services/networking/jotta-cli.md
index fee002a4e6046..335e5c8e38563 100644
--- a/nixos/modules/services/networking/jotta-cli.md
+++ b/nixos/modules/services/networking/jotta-cli.md
@@ -6,7 +6,7 @@ The [Jottacloud Command-line Tool](https://docs.jottacloud.com/en/articles/14368
 
 ```nix
 {
-  user.services.jotta-cli.enable = true;
+  services.jotta-cli.enable = true;
 }
 ```
 
@@ -15,7 +15,7 @@ This adds `jotta-cli` to `environment.systemPackages` and starts a user service
 ## Example Configuration {#module-services-jotta-cli-example-configuration}
 
 ```nix
-user.services.jotta-cli = {
+services.jotta-cli = {
   enable = true;
   options = [ "slow" ];
   package = pkgs.jotta-cli;