From c5f54de5466ac304ebc58a9b4ed76e61e63d57c5 Mon Sep 17 00:00:00 2001 From: liv Date: Sun, 27 Oct 2024 09:10:35 +0100 Subject: [PATCH] home: install more php packages --- home/features/devel/php.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/home/features/devel/php.nix b/home/features/devel/php.nix index 1df3c6a..2d3cb5d 100644 --- a/home/features/devel/php.nix +++ b/home/features/devel/php.nix @@ -1,5 +1,3 @@ -# install php from nixpkgs because mise wants to compile it from source, -# and that's a whole can of beans i'm not getting into { pkgs, ... }: { - home.packages = with pkgs; [ php83 ]; + home.packages = with pkgs; [ php83 php83Packages.composer phpactor ]; }