nixos/postgrest: fix typo in name of configuration options (#411197)

The config-file key is 'server-unix-socket-mode', not 'service-unix-socket-mode'.
This commit is contained in:
Marc Fontaine
2025-05-26 19:21:10 +00:00
committed by GitHub
parent ceff388053
commit b134f3148f
@@ -247,7 +247,7 @@ in
# Since we're using DynamicUser, we can't add the e.g. nginx user to
# a postgrest group, so the unix socket must be world-readable to make it useful.
services.postgrest.settings.service-unix-socket-mode = "666";
services.postgrest.settings.server-unix-socket-mode = "666";
systemd.services.postgrest = {
description = "PostgREST";