Initial commit

This commit is contained in:
Oliver Davies 2024-02-06 08:00:00 +00:00
commit ccfd866f59
14 changed files with 3732 additions and 0 deletions

22
flake.nix Normal file
View file

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