nixos/hedgedoc: configuration -> settings in option's description

`configuration` has been renamed to `settings` and our docs should
reflect that.
This commit is contained in:
Maximilian Bosch 2022-11-25 10:32:34 +01:00
parent 8cd95a3817
commit df50f73b57
No known key found for this signature in database
GPG key ID: 9A6EEA275CA5BE0A

View file

@ -999,8 +999,8 @@ in
```
# snippet of HedgeDoc-related config
services.hedgedoc.configuration.dbURL = "postgres://hedgedoc:\''${DB_PASSWORD}@db-host:5432/hedgedocdb";
services.hedgedoc.configuration.minio.secretKey = "$MINIO_SECRET_KEY";
services.hedgedoc.settings.dbURL = "postgres://hedgedoc:\''${DB_PASSWORD}@db-host:5432/hedgedocdb";
services.hedgedoc.settings.minio.secretKey = "$MINIO_SECRET_KEY";
```
```