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