diff options
Diffstat (limited to 'host')
-rwxr-xr-x | host/Rory-postgres/software.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/Rory-postgres/software.nix b/host/Rory-postgres/software.nix index e16fac2..7b75435 100755 --- a/host/Rory-postgres/software.nix +++ b/host/Rory-postgres/software.nix @@ -6,7 +6,7 @@ ../../modules/base-server.nix ]; - systemd.tmpfiles.rules = [ "d /data/pg 0750 postgres postgres" ]; + systemd.tmpfiles.rules = [ "d /mnt/postgres/data 0750 postgres postgres" ]; services.postgresql = { enable = true; @@ -26,7 +26,7 @@ # CREATE DATABASE nixcloud; # GRANT ALL PRIVILEGES ON DATABASE nixcloud TO nixcloud; # ''; - dataDir = "/data/pg"; + dataDir = "/mnt/postgres/data"; settings = { "max_connections" = "100"; "shared_buffers" = "128MB"; |