nixos/nextcloud: Use php84 by default

php84 is supported by nextcloud31 and nextcloud32 and brings some additional performance improvements in nextcloud32.
This commit is contained in:
provokateurin
2025-10-07 09:45:28 +02:00
parent 34a7111f89
commit f8d0f08acc
@@ -442,7 +442,7 @@ in
];
};
phpPackage = lib.mkPackageOption pkgs "php" {
default = [ "php83" ];
default = [ "php84" ];
example = "php82";
};