Skip to content

Commit

Permalink
Bump postgres and disable postgis
Browse files Browse the repository at this point in the history
Postgis is broken on nixos-unstable
(NixOS/nixpkgs#16032).
  • Loading branch information
lbodor committed Jul 11, 2016
1 parent f82a137 commit 2b59d34
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mixins/postgres/postgres-service.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
{
services.postgresql = {
enable = true;
package = pkgs.postgresql94;
extraPlugins = [ (pkgs.postgis.override { postgresql = pkgs.postgresql94; }).v_2_1_4 ];
package = pkgs.postgresql95;
# extraPlugins = [ (pkgs.postgis.override { postgresql = pkgs.postgresql94; }).v_2_1_4 ];
authentication =
''
local all root ident
Expand Down

0 comments on commit 2b59d34

Please sign in to comment.