summary refs log tree commit diff
path: root/nixos/tests
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2018-10-18 14:52:29 +0100
committerAlyssa Ross <hi@alyssa.is>2018-10-30 14:33:35 +0000
commit91c746cacc3db360f960132ffda7fe1351a3b33d (patch)
tree501a8d031ac5d737e412dc9e725c98f15a02d3b9 /nixos/tests
parentc6c7d55790b603db68ee43a55c20e503281eeda4 (diff)
downloadnixlib-91c746cacc3db360f960132ffda7fe1351a3b33d.tar
nixlib-91c746cacc3db360f960132ffda7fe1351a3b33d.tar.gz
nixlib-91c746cacc3db360f960132ffda7fe1351a3b33d.tar.bz2
nixlib-91c746cacc3db360f960132ffda7fe1351a3b33d.tar.lz
nixlib-91c746cacc3db360f960132ffda7fe1351a3b33d.tar.xz
nixlib-91c746cacc3db360f960132ffda7fe1351a3b33d.tar.zst
nixlib-91c746cacc3db360f960132ffda7fe1351a3b33d.zip
postgresql_11: init at 11.0
Diffstat (limited to 'nixos/tests')
-rw-r--r--nixos/tests/postgis.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/postgis.nix b/nixos/tests/postgis.nix
index 2a9b477bf237..49be0672a8e5 100644
--- a/nixos/tests/postgis.nix
+++ b/nixos/tests/postgis.nix
@@ -9,7 +9,7 @@ import ./make-test.nix ({ pkgs, ...} : {
       { pkgs, ... }:
 
       {
-        services.postgresql = let mypg = pkgs.postgresql_10; in {
+        services.postgresql = let mypg = pkgs.postgresql_11; in {
             enable = true;
             package = mypg;
             extraPlugins = [ (pkgs.postgis.override { postgresql = mypg; }) ];