1
0
Fork 0
forked from NixOS/nixpkgs

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 21:21:10 +02:00 committed by GitHub
parent ceff388053
commit b134f3148f
Signed by: github
GPG key ID: B5690EEEBB952194

View file

@ -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";