nixos/solitary: Upgrade PostgreSQL 14 → 17
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 b79e9a9ed1
Signed by: mikael
SSH key fingerprint: SHA256:21QyD2Meiot7jOUVitIR5YkGB/XuXdCvLW1hE6dsri0

View file

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