From e2429d52e5b13df6953a535bcd4ad0c8954fa33d Mon Sep 17 00:00:00 2001 From: Spencer Brower Date: Thu, 6 Oct 2022 14:23:58 -0400 Subject: [PATCH] fix: Composer now uses the same php as laravel. --- 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 8330a3b..264d04d 100644 --- a/nixos/modules/web-apps/laravel.nix +++ b/nixos/modules/web-apps/laravel.nix @@ -75,7 +75,7 @@ in config = lib.mkIf cfg.enable (lib.mkMerge [ { environment.systemPackages = with pkgs; [ - php.packages.composer + cfg.phpPackage.packages.composer ]; services.phpfpm.phpPackage = cfg.phpPackage;