From 4b98e262a040f69197ad43cd4ec7f9106bf6495d Mon Sep 17 00:00:00 2001 From: Aaron Andersen Date: Fri, 28 Jun 2019 21:47:17 -0400 Subject: Revert "nixos/phpfpm: Remove usage of undefined variable fpmCfg" This reverts commit 54645ce43a1cd2ecde5f1b6d035366b0311117cf. --- nixos/modules/services/web-servers/phpfpm/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/nixos/modules/services/web-servers/phpfpm/default.nix b/nixos/modules/services/web-servers/phpfpm/default.nix index 5c650210f9f..e424080ab1f 100644 --- a/nixos/modules/services/web-servers/phpfpm/default.nix +++ b/nixos/modules/services/web-servers/phpfpm/default.nix @@ -65,8 +65,8 @@ in { phpPackage = mkOption { type = types.package; - default = pkgs.php; - defaultText = "pkgs.php"; + default = fpmCfg.phpPackage; + defaultText = "config.services.phpfpm.phpPackage"; description = '' The PHP package to use for running this PHP-FPM pool. ''; @@ -74,9 +74,10 @@ in { phpOptions = mkOption { type = types.lines; - default = ""; + default = fpmCfg.phpOptions; + defaultText = "config.services.phpfpm.phpOptions"; description = '' - Options appended to the PHP configuration file php.ini used for this PHP-FPM pool. + "Options appended to the PHP configuration file php.ini used for this PHP-FPM pool." ''; }; -- cgit 1.4.1