diff --git a/flake.nix b/flake.nix index 5408e8958..affb9d9bb 100644 --- a/flake.nix +++ b/flake.nix @@ -10,7 +10,12 @@ { devShells.${system}.default = pkgs.mkShell { buildInputs = with pkgs; [ - php83 + (php83.buildEnv { + extraConfig = '' + error_reporting = E_ALL & ~E_DEPRECATED & ~E_USER_DEPRECATED + ''; + }) + php83Packages.composer tailwindcss ];