From 9f0105553029453a0966cd4ebb3624b8a1a4ee83 Mon Sep 17 00:00:00 2001 From: Giulio De Pasquale Date: Sun, 17 Nov 2024 20:29:10 +0000 Subject: [PATCH] fix(postgres.nix): update configuration path to use `services.postgresql` - Changed the configuration path from `postgresql` to `services.postgresql` for consistency and correctness. --- hosts/architect/postgres.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/architect/postgres.nix b/hosts/architect/postgres.nix index 0ebd896..9b1f35b 100644 --- a/hosts/architect/postgres.nix +++ b/hosts/architect/postgres.nix @@ -1,7 +1,7 @@ { pkgs, lib, ... }: { - postgresql = { + services.postgresql = { enable = true; package = lib.mkForce pkgs.postgresql; };