From 9e706b573127094f7401cae366ac67700ea48ec7 Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Thu, 12 Feb 2026 14:13:27 -0500 Subject: [PATCH] fix(postgresql): correct tmpfiles user from 'postgresql' to 'postgres' --- services/postgresql.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/postgresql.nix b/services/postgresql.nix index 6d380b8..474ebe2 100644 --- a/services/postgresql.nix +++ b/services/postgresql.nix @@ -11,7 +11,7 @@ config.services.postgresql.dataDir ]) (lib.serviceFilePerms "postgresql" [ - "Z ${config.services.postgresql.dataDir} 0700 postgresql postgresql" + "Z ${config.services.postgresql.dataDir} 0700 postgres postgres" ]) ];