Automated commit

Signed-off-by: Oliver Davies <oliver@oliverdavies.uk>
This commit is contained in:
Oliver Davies 2025-08-18 21:14:58 +01:00
parent 1d166f3660
commit 1a64bf2db6
2 changed files with 7 additions and 12 deletions

View file

@ -10,6 +10,12 @@
pkgs = import inputs.nixpkgs { inherit system; }; pkgs = import inputs.nixpkgs { inherit system; };
in in
{ {
devShells.${system}.default = (import ./shell.nix { inherit pkgs; }); devShells.${system}.default = pkgs.mkShell {
packages = with pkgs; [
php
phpPackages.composer
phpactor
];
};
}; };
} }

View file

@ -1,11 +0,0 @@
{
pkgs ? import <nixpkgs> { },
}:
pkgs.mkShell {
packages = with pkgs; [
php
phpPackages.composer
phpactor
];
}