fix(docs): some wording on nix config and CI stuffs

This commit is contained in:
nelind
2026-05-27 20:13:07 +03:00
committed by Tangled
parent a7052e878c
commit 4b23ca2c36
2 changed files with 3 additions and 4 deletions
+1 -1
View File
@@ -217,7 +217,7 @@ The log entry shold look something like this:
## Binary cache
The flake publishes its package, frontend, and devshell to [tranquil.cachix.org](https://tranquil.cachix.org). To pull from it instead of building locally, add to your NixOS config:
Flake artifacts, package, frontend, and devshell, are built in CI and pushed to [tranquil.cachix.org](https://tranquil.cachix.org). To pull from it instead of building locally, add to your NixOS config:
```nix
nix.settings = {
+2 -3
View File
@@ -48,9 +48,8 @@ Shared, regardless of init system:
### Nix
1. Set `services.tranquil-pds.database.createLocally = false`. This removes the local postgres service and the automatic `database.url`.
2. Set `services.tranquil-pds.settings.storage.repo_backend = "tranquil-store";`.
3. Leave `data_dir` at its default. It sits under the service state directory and needs no extra work. If you relocate it, ensure the service user can write there.
1. Set `services.tranquil-pds.settings.storage.repo_backend = "tranquil-store";`.
2. Make sure all the postgres related options are left as their default. Otherwise you might end up with a useless running instance of postgres.
That's it!!