diff options
author | Vincent Ambo <mail@tazj.in> | 2023-11-05T08·51+0300 |
---|---|---|
committer | tazjin <tazjin@tvl.su> | 2023-11-05T09·16+0000 |
commit | 84a1e9e081e6536d76c28d8391abbc13f8cc158e (patch) | |
tree | 17ca8ca2bc0968aa3a06ca493f9040cdca744372 | |
parent | e60478ae3c22665eadfe7ae0bf210737e661a520 (diff) |
chore(whitby): upgrade to PostgreSQL 16 r/6943
Relates to b/330 Change-Id: If5ef3e999511754e6eb69a4c0a44e6eed21b56b5 Reviewed-on: https://cl.tvl.fyi/c/depot/+/9949 Reviewed-by: tazjin <tazjin@tvl.su> Autosubmit: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI
-rw-r--r-- | ops/machines/whitby/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ops/machines/whitby/default.nix b/ops/machines/whitby/default.nix index 32fe8c3dcc93..a7f3392beddb 100644 --- a/ops/machines/whitby/default.nix +++ b/ops/machines/whitby/default.nix @@ -435,7 +435,7 @@ in services.postgresql = { enable = true; enableTCPIP = true; - package = pkgs.postgresql_12; + package = pkgs.postgresql_16; authentication = lib.mkForce '' local all all trust |