about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorEmber Keske <git@n0emis.eu>2023-08-19 13:50:47 +0200
committerEmber Keske <git@n0emis.eu>2023-08-19 13:52:07 +0200
commit0b1ef8ea9e8b5c35e1d48a88f6cff506a6ba432e (patch)
tree254a3110bfed915591aa7b6a53027ad0ee1acfff /nixos
parent4fe4a74fe55fcb512902bbdee59a7fdcc9f7c754 (diff)
downloadnixlib-0b1ef8ea9e8b5c35e1d48a88f6cff506a6ba432e.tar
nixlib-0b1ef8ea9e8b5c35e1d48a88f6cff506a6ba432e.tar.gz
nixlib-0b1ef8ea9e8b5c35e1d48a88f6cff506a6ba432e.tar.bz2
nixlib-0b1ef8ea9e8b5c35e1d48a88f6cff506a6ba432e.tar.lz
nixlib-0b1ef8ea9e8b5c35e1d48a88f6cff506a6ba432e.tar.xz
nixlib-0b1ef8ea9e8b5c35e1d48a88f6cff506a6ba432e.tar.zst
nixlib-0b1ef8ea9e8b5c35e1d48a88f6cff506a6ba432e.zip
grocy: 4.0.0 -> 4.0.2
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/web-apps/grocy.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/nixos/modules/services/web-apps/grocy.nix b/nixos/modules/services/web-apps/grocy.nix
index b0d3c44cea81..d4b1a892867f 100644
--- a/nixos/modules/services/web-apps/grocy.nix
+++ b/nixos/modules/services/web-apps/grocy.nix
@@ -115,9 +115,9 @@ in {
       user = "grocy";
       group = "nginx";
 
-      # PHP 8.1 is the only version which is supported/tested by upstream:
-      # https://github.com/grocy/grocy/blob/v4.0.0/README.md#platform-support
-      phpPackage = pkgs.php81;
+      # 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;
 
       inherit (cfg.phpfpm) settings;