From 2949bcef85499a51a4bf2deac8b362d943876242 Mon Sep 17 00:00:00 2001 From: Nathan McCarty Date: Sun, 28 May 2023 19:57:18 -0400 Subject: [PATCH] Update postgres to 15 --- machines/oracles/configuration.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/machines/oracles/configuration.nix b/machines/oracles/configuration.nix index 148d6d7..27f30bd 100644 --- a/machines/oracles/configuration.nix +++ b/machines/oracles/configuration.nix @@ -68,6 +68,8 @@ virtualization = { docker = true; }; }; }; + # Set postgres version + services.postgresql.package = pkgs.postgresql_15; # Configure bootloader boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true;