- Changed the configuration path from `postgresql` to `services.postgresql` for consistency and correctness.
9 lines
118 B
Nix
9 lines
118 B
Nix
{ pkgs, lib, ... }:
|
|
|
|
{
|
|
services.postgresql = {
|
|
enable = true;
|
|
package = lib.mkForce pkgs.postgresql;
|
|
};
|
|
}
|