about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2024-04-22 13:43:17 +0000
committerGitHub <noreply@github.com>2024-04-22 13:43:17 +0000
commite8e9c5c3b1253e9347ff97a066a60746113cbfd8 (patch)
tree494075a4efe5981b20f55ad9305c6724d509aa7f /nixos
parentddb94deafad959c7a3ad1e34bbf2184fcec1a0f9 (diff)
parent7bb471b3e8d0529af588b73fa715c729a9c5d92b (diff)
Merge pull request #305837 from Ma27/roundcube-php83
nixos/roundcube: use php 8.3
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/mail/roundcube.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/mail/roundcube.nix b/nixos/modules/services/mail/roundcube.nix
index 4499532ace897..dfbdff7fb0113 100644
--- a/nixos/modules/services/mail/roundcube.nix
+++ b/nixos/modules/services/mail/roundcube.nix
@@ -7,7 +7,7 @@ let
   fpm = config.services.phpfpm.pools.roundcube;
   localDB = cfg.database.host == "localhost";
   user = cfg.database.username;
-  phpWithPspell = pkgs.php81.withExtensions ({ enabled, all }: [ all.pspell ] ++ enabled);
+  phpWithPspell = pkgs.php83.withExtensions ({ enabled, all }: [ all.pspell ] ++ enabled);
 in
 {
   options.services.roundcube = {