Skip to content

Commit

Permalink
postgresql: 16 -> 17
Browse files Browse the repository at this point in the history
  • Loading branch information
Defelo committed Jan 26, 2025
1 parent 8ccf9ec commit 886e622
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions hosts/test/backend/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
config,
lib,
backend-develop,
pkgs,
...
}: {
imports = [
Expand All @@ -18,8 +17,6 @@
../../../modules/backend/scripts.nix
];

services.postgresql.package = lib.mkForce pkgs.postgresql_17;

# new backend
services.academy.backend = {
enable = true;
Expand Down
2 changes: 1 addition & 1 deletion modules/postgres.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
in
lib.mkIf cfg.enable {
services.postgresql = {
package = pkgs.postgresql_16;
package = pkgs.postgresql_17;
enableTCPIP = true;
ensureUsers =
map (db: {
Expand Down

0 comments on commit 886e622

Please sign in to comment.