summaryrefslogtreecommitdiffstats
path: root/nixos/modules/services/databases
diff options
context:
space:
mode:
authorMatthieu Coudron <886074+teto@users.noreply.github.com>2023-07-27 11:48:25 +0200
committerAustin Seipp <aseipp@pobox.com>2023-07-27 11:35:55 -0500
commit6774f3fc04adfd6245a84f02cd0c7ed1af02c89b (patch)
tree8582b5813f3864c6f0f431341a278d0a78060ad5 /nixos/modules/services/databases
parentbdddb46f4b058465ad53134d4a118671f9956662 (diff)
services.postgresql: fix example
Diffstat (limited to 'nixos/modules/services/databases')
-rw-r--r--nixos/modules/services/databases/postgresql.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/services/databases/postgresql.nix b/nixos/modules/services/databases/postgresql.nix
index a7016bbee3a8..0acaf0fd00a6 100644
--- a/nixos/modules/services/databases/postgresql.nix
+++ b/nixos/modules/services/databases/postgresql.nix
@@ -404,8 +404,8 @@ in
{
log_connections = true;
log_statement = "all";
- logging_collector = true
- log_disconnections = true
+ logging_collector = true;
+ log_disconnections = true;
log_destination = lib.mkForce "syslog";
}
'';