From 188573bf932186dc1aedf4419cc9f1edc0de42ab Mon Sep 17 00:00:00 2001 From: Thomas Gerbet Date: Mon, 3 Apr 2023 18:21:35 +0200 Subject: [PATCH] nixos/roundcube: use PHP 8.1 Roundcube has announced support of PHP 8.1 in the 1.6.0 https://github.com/roundcube/roundcubemail/releases/tag/1.6.0 --- nixos/modules/services/mail/roundcube.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/mail/roundcube.nix b/nixos/modules/services/mail/roundcube.nix index 7b6d8221929..3aaec145930 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.php80.withExtensions ({ enabled, all }: [ all.pspell ] ++ enabled); + phpWithPspell = pkgs.php81.withExtensions ({ enabled, all }: [ all.pspell ] ++ enabled); in { options.services.roundcube = {