fix(postgres.nix): update configuration path to use services.postgresql

- Changed the configuration path from `postgresql` to `services.postgresql` for consistency and correctness.
This commit is contained in:
Giulio De Pasquale 2024-11-17 20:29:10 +00:00
parent 2dc8e1b1a3
commit 9f01055530

View File

@ -1,7 +1,7 @@
{ pkgs, lib, ... }:
{
postgresql = {
services.postgresql = {
enable = true;
package = lib.mkForce pkgs.postgresql;
};