From e6f3fe45afeecf14166686cdb3421a7c42c1be25 Mon Sep 17 00:00:00 2001 From: Pascal Bach Date: Thu, 23 Oct 2025 21:48:49 +0200 Subject: [PATCH] modules/grocy: update to PHP 8.3 The version currently in nixpkgs support 8.2 and 8.3 --- nixos/modules/services/web-apps/grocy.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nixos/modules/services/web-apps/grocy.nix b/nixos/modules/services/web-apps/grocy.nix index ce5be95ce6f3..b38f35903b68 100644 --- a/nixos/modules/services/web-apps/grocy.nix +++ b/nixos/modules/services/web-apps/grocy.nix @@ -149,9 +149,9 @@ in user = "grocy"; group = "nginx"; - # PHP 8.1 and 8.2 are the only version which are supported/tested by upstream: - # https://github.com/grocy/grocy/blob/v4.0.2/README.md#platform-support - phpPackage = pkgs.php82; + # PHP 8.2 and 8.3 are the only version which are supported/tested by upstream: + # https://github.com/grocy/grocy/blob/v4.5.0/README.md#platform-support + phpPackage = pkgs.php83; inherit (cfg.phpfpm) settings;