nixos/tests/gitlab: use postgresql 13

Since 21.05 still defaults to 11, we need to set this (as does every
user).
This commit is contained in:
Yureka 2021-07-02 10:23:59 +02:00 committed by Yuka
parent e4deb36262
commit 7b1021ce28
1 changed files with 2 additions and 0 deletions

View File

@ -63,6 +63,8 @@ import ./make-test-python.nix ({ pkgs, lib, ...} : with lib; {
jwsFile = pkgs.runCommand "oidcKeyBase" {} "${pkgs.openssl}/bin/openssl genrsa 2048 > $out"; jwsFile = pkgs.runCommand "oidcKeyBase" {} "${pkgs.openssl}/bin/openssl genrsa 2048 > $out";
}; };
}; };
services.postgresql.package = pkgs.postgresql_13;
}; };
}; };