Initial commit

This commit is contained in:
Oliver Davies 2025-04-16 18:18:17 +01:00
parent c7cd62fce9
commit 19d6ba7c4c
2 changed files with 46 additions and 0 deletions

19
flake.nix Normal file
View file

@ -0,0 +1,19 @@
{
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
outputs =
{ nixpkgs, ... }:
let
system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; };
in
{
devShells.${system}.default = pkgs.mkShell {
packages = with pkgs; [
php83
php83Packages.composer
];
};
};
}