about summary refs log tree commit diff
path: root/nixos/tests/postgis.nix
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/postgis.nix
parentc6c7d55790b603db68ee43a55c20e503281eeda4 (diff)
postgresql_11: init at 11.0
Diffstat (limited to 'nixos/tests/postgis.nix')
-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 2a9b477bf2378..49be0672a8e53 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; }) ];