From b134f3148fb2b457f547842f173e34767d4d969f Mon Sep 17 00:00:00 2001 From: Marc Fontaine Date: Mon, 26 May 2025 21:21:10 +0200 Subject: [PATCH] nixos/postgrest: fix typo in name of configuration options (#411197) The config-file key is 'server-unix-socket-mode', not 'service-unix-socket-mode'. --- nixos/modules/services/databases/postgrest.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/databases/postgrest.nix b/nixos/modules/services/databases/postgrest.nix index e9e03089a8b2..5cd90db3609a 100644 --- a/nixos/modules/services/databases/postgrest.nix +++ b/nixos/modules/services/databases/postgrest.nix @@ -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";