Move all files to reading-college/demo/

This commit is contained in:
Oliver Davies 2025-10-02 08:59:27 +01:00
parent 9bb0b58dfd
commit 8b2fabb6b7
15 changed files with 0 additions and 0 deletions

View file

@ -1,31 +0,0 @@
{
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
outputs =
{ nixpkgs, ... }:
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in
{
devShells.${system}.default =
let
php = pkgs.php83.buildEnv {
extraConfig = ''
memory_limit = 512M
'';
};
phpPackages = pkgs.php83Packages;
in
pkgs.mkShell {
packages = with pkgs; [
php
phpPackages.composer
simple-http-server
sqlite
];
};
formatter.${system} = pkgs.nixfmt-classic;
};
}