We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cc5c777 + e429af7 commit 969f217Copy full SHA for 969f217
pkgs/modules/default.nix
@@ -89,7 +89,12 @@ let
89
(import ./lua)
90
(import ./nix)
91
(import ./php)
92
- (import ./postgresql)
+ (import ./postgresql {
93
+ postgresql = pkgs.postgresql_16;
94
+ })
95
96
+ postgresql = pkgs.postgresql_17;
97
98
(import ./qbasic)
99
(import ./R)
100
(import ./replit)
pkgs/modules/postgresql/default.nix
@@ -1,6 +1,6 @@
1
+{ postgresql }:
2
{ pkgs, lib, ... }:
3
let
- postgresql = pkgs.postgresql_16;
4
postgresql-version = lib.versions.major postgresql.version;
5
in
6
{
0 commit comments