nixos/roundcube: Use php74

master
Malte Voos 2021-06-05 15:28:29 +02:00
parent 141b2b111d
commit f41f456422
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ let
fpm = config.services.phpfpm.pools.roundcube;
localDB = cfg.database.host == "localhost";
user = cfg.database.username;
phpWithPspell = pkgs.php.withExtensions ({ enabled, all }: [ all.pspell ] ++ enabled);
phpWithPspell = pkgs.php74.withExtensions ({ enabled, all }: [ all.pspell ] ++ enabled);
in
{
options.services.roundcube = {