Skip to content

Commit

Permalink
fix some option names in the docs
Browse files Browse the repository at this point in the history
  • Loading branch information
tek committed Oct 8, 2023
1 parent 9f48a9f commit 6edf950
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/doc/prose.nix
Original file line number Diff line number Diff line change
Expand Up @@ -816,17 +816,17 @@ in {
nixos.users.users.postgres.extraGroups = ["docker"];
# Configure PostgreSQL specifically, used by `services.postgres.nixos-base` internally
dbUser = "root";
creds.user = "root";
};
envs.example = {
services.postgres = {
# Declare that this environment uses `services.postgres`
# Declare that this environment uses `config.services.postgres` above
enable = true;
# Add overrides for the configuration in `service.postgres`
config = { dbName = "test-db"; };
# Add overrides for the configuration in `config.services.postgres`
config = { name = "test-db"; };
};
};
Expand Down

0 comments on commit 6edf950

Please sign in to comment.