nixos/nextcloud: use PHP 7.3 instead of 7.1 by default

This commit is contained in:
Pascal Bach 2019-02-27 22:20:42 +01:00
parent 7f8620900a
commit 8f1b163b00
1 changed files with 3 additions and 3 deletions

View File

@ -97,8 +97,8 @@ in {
phpPackages = mkOption { phpPackages = mkOption {
type = types.attrs; type = types.attrs;
default = pkgs.php71Packages; default = pkgs.php73Packages;
defaultText = "pkgs.php71Packages"; defaultText = "pkgs.php73Packages";
description = '' description = ''
Overridable attribute of the PHP packages set to use. If any caching Overridable attribute of the PHP packages set to use. If any caching
module is enabled, it will be taken from here. Therefore it should module is enabled, it will be taken from here. Therefore it should
@ -361,7 +361,7 @@ in {
services.phpfpm = { services.phpfpm = {
phpOptions = phpOptionsExtensions; phpOptions = phpOptionsExtensions;
phpPackage = pkgs.php71; phpPackage = pkgs.php73;
pools.nextcloud = let pools.nextcloud = let
phpAdminValues = (toKeyValue phpAdminValues = (toKeyValue
(foldr (a: b: a // b) {} (foldr (a: b: a // b) {}