summaryrefslogtreecommitdiffstats
path: root/nixos/modules/services/databases
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2023-11-20 14:42:57 +0100
committerGitHub <noreply@github.com>2023-11-20 14:42:57 +0100
commit809f926017796e7894271a530ac1cb9aa3401222 (patch)
tree00fa45feedded1c4c7aebf31533b03e077118ed1 /nixos/modules/services/databases
parent0a6a7c83417c74c58e54b0e828ff6d6b21a39a5b (diff)
nixos/postgresql: fix mentioned settings in ensurePermissions warnings
Diffstat (limited to 'nixos/modules/services/databases')
-rw-r--r--nixos/modules/services/databases/postgresql.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/services/databases/postgresql.nix b/nixos/modules/services/databases/postgresql.nix
index a9067d5974a9..d69ffff7b47b 100644
--- a/nixos/modules/services/databases/postgresql.nix
+++ b/nixos/modules/services/databases/postgresql.nix
@@ -467,9 +467,9 @@ in
}) cfg.ensureUsers;
# `ensurePermissions` is now deprecated, let's avoid it.
warnings = lib.optional (any ({ ensurePermissions, ... }: ensurePermissions != {}) cfg.ensureUsers) "
- `services.postgresql.*.ensurePermissions` is used in your expressions,
+ `services.postgresql.ensureUsers.*.ensurePermissions` is used in your expressions,
this option is known to be broken with newer PostgreSQL versions,
- consider migrating to `services.postgresql.*.ensureDBOwnership` or
+ consider migrating to `services.postgresql.ensureUsers.*.ensureDBOwnership` or
consult the release notes or manual for more migration guidelines.
This option will be removed in NixOS 24.05 unless it sees significant