fix(postgresql): correct tmpfiles user from 'postgresql' to 'postgres'

This commit is contained in:
2026-02-12 14:13:27 -05:00
parent ed22169aa9
commit 9e706b5731

View File

@@ -11,7 +11,7 @@
config.services.postgresql.dataDir config.services.postgresql.dataDir
]) ])
(lib.serviceFilePerms "postgresql" [ (lib.serviceFilePerms "postgresql" [
"Z ${config.services.postgresql.dataDir} 0700 postgresql postgresql" "Z ${config.services.postgresql.dataDir} 0700 postgres postgres"
]) ])
]; ];