From 58d9afc25a86228600493a84680ca3f970ccf6d7 Mon Sep 17 00:00:00 2001 From: Spencer Brower Date: Thu, 6 Oct 2022 15:08:45 -0400 Subject: [PATCH] fix(laravel): Default php now includes the `php-redis` extension. --- nixos/modules/web-apps/laravel.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/web-apps/laravel.nix b/nixos/modules/web-apps/laravel.nix index 264d04d..a3a2f40 100644 --- a/nixos/modules/web-apps/laravel.nix +++ b/nixos/modules/web-apps/laravel.nix @@ -61,7 +61,7 @@ in phpPackage = lib.mkOption { description = "The php package run laravel with."; type = lib.types.package; - default = pkgs.php; + default = (pkgs.php.withExtensions ({ enabled, all }: enabled ++ [ all.redis ])); }; db.connection = lib.mkOption {