nixos/nextcloud: use php8 where possible

main
Maximilian Bosch 3 years ago
parent 82155ff501
commit 66edc1e846
No known key found for this signature in database
GPG Key ID: 091DBF4D1FC46B8E
  1. 14
      nixos/modules/services/web-apps/nextcloud.nix

@ -6,7 +6,7 @@ let
cfg = config.services.nextcloud;
fpm = config.services.phpfpm.pools.nextcloud;
phpPackage = pkgs.php74.buildEnv {
phpPackage = cfg.phpPackage.buildEnv {
extensions = { enabled, all }:
(with all;
enabled
@ -94,6 +94,14 @@ in {
description = "Which package to use for the Nextcloud instance.";
relatedPackages = [ "nextcloud20" "nextcloud21" "nextcloud22" ];
};
phpPackage = mkOption {
type = types.package;
relatedPackages = [ "php74" "php80" ];
defaultText = "pkgs.php";
description = ''
PHP package to use for Nextcloud.
'';
};
maxUploadSize = mkOption {
default = "512M";
@ -423,6 +431,10 @@ in {
else if versionOlder stateVersion "21.11" then nextcloud21
else nextcloud22
);
services.nextcloud.phpPackage =
if versionOlder cfg.package.version "21" then pkgs.php74
else pkgs.php80;
}
{ systemd.timers.nextcloud-cron = {

Loading…
Cancel
Save