diff options
author | TheArcaneBrony <myrainbowdash949@gmail.com> | 2022-12-26 19:48:41 +0100 |
---|---|---|
committer | TheArcaneBrony <myrainbowdash949@gmail.com> | 2022-12-26 19:48:41 +0100 |
commit | 6aec3e8f3c8a84d61ac42da9d1bd209950e0f86b (patch) | |
tree | 342d09e930a1f58588f10ef5863714a6adc879ec /host | |
parent | Fix pg_hba (diff) | |
download | Rory-Open-Architecture-6aec3e8f3c8a84d61ac42da9d1bd209950e0f86b.tar.xz |
Fix pg perms
Signed-off-by: TheArcaneBrony <myrainbowdash949@gmail.com>
Diffstat (limited to 'host')
-rw-r--r-- | host/Rory-postgres/configuration.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/Rory-postgres/configuration.nix b/host/Rory-postgres/configuration.nix index 7531b62..fce3257 100644 --- a/host/Rory-postgres/configuration.nix +++ b/host/Rory-postgres/configuration.nix @@ -17,7 +17,7 @@ # environment.systemPackages = with pkgs; [ # postgresql # ]; - systemd.tmpfiles.rules = [ "d /data/pg 0755 postgres postgres" ]; + systemd.tmpfiles.rules = [ "d /data/pg 0750 postgres postgres" ]; services.postgresql = { enable = true; |