Unverified Commit f8d0f08a authored by provokateurin's avatar provokateurin
Browse files

nixos/nextcloud: Use php84 by default

php84 is supported by nextcloud31 and nextcloud32 and brings some additional performance improvements in nextcloud32.
parent 34a7111f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -442,7 +442,7 @@ in
      ];
    };
    phpPackage = lib.mkPackageOption pkgs "php" {
      default = [ "php83" ];
      default = [ "php84" ];
      example = "php82";
    };