From 7b1021ce28db0f267be63f2afd2fe5747914827d Mon Sep 17 00:00:00 2001 From: Yureka Date: Fri, 2 Jul 2021 10:23:59 +0200 Subject: [PATCH] nixos/tests/gitlab: use postgresql 13 Since 21.05 still defaults to 11, we need to set this (as does every user). --- nixos/tests/gitlab.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/tests/gitlab.nix b/nixos/tests/gitlab.nix index af2ab12bf4b..a629bf749ca 100644 --- a/nixos/tests/gitlab.nix +++ b/nixos/tests/gitlab.nix @@ -63,6 +63,8 @@ import ./make-test-python.nix ({ pkgs, lib, ...} : with lib; { jwsFile = pkgs.runCommand "oidcKeyBase" {} "${pkgs.openssl}/bin/openssl genrsa 2048 > $out"; }; }; + + services.postgresql.package = pkgs.postgresql_13; }; };