From e1025a2d39240f15f1717ab324e8c27a05f48110 Mon Sep 17 00:00:00 2001 From: Haak Saxberg Date: Tue, 23 Jul 2019 21:25:54 -0700 Subject: [PATCH] fix issue in pgdata setup --- nix/home.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/home.nix b/nix/home.nix index 50b5f92..8dda987 100644 --- a/nix/home.nix +++ b/nix/home.nix @@ -25,7 +25,7 @@ with lib; export PGHOST="$PGDATA" if [[ ! -d "$PGDATA" ]]; then initdb --locale=$LANG - cat <<'EOF' >>"$PGDATA/postgresql.conf" + cat <>"$PGDATA/postgresql.conf" listen_addresses = 'localhost' unix_socket_directories = '$PGHOST' EOF