nixos/solitary: Upgrade PostgreSQL 14 → 16
Some checks are pending
nix flake check / check (aarch64-linux) (push) Waiting to run
nix flake check / check (x86_64-linux) (push) Waiting to run

This commit is contained in:
Mikael 2024-11-01 20:17:59 +01:00
parent 38f9269c81
commit d6c769d236
Signed by: mikael
SSH key fingerprint: SHA256:21QyD2Meiot7jOUVitIR5YkGB/XuXdCvLW1hE6dsri0

View file

@ -523,9 +523,9 @@ in {
services.postgresql = {
enable = true;
package = pkgs.postgresql_14;
package = pkgs.postgresql_16;
extraPlugins = with pkgs.postgresql_14.pkgs; [
extraPlugins = with pkgs.postgresql_16.pkgs; [
rum
];