refactor: move into src

This commit is contained in:
Oliver Davies 2023-10-18 00:11:16 +02:00
parent 675e89e9d1
commit 51c5f5759d
404 changed files with 2 additions and 2 deletions

View file

@ -1,19 +0,0 @@
{
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
inputs.devshell.url = "github:numtide/devshell";
outputs = inputs@{ flake-parts, ... }:
flake-parts.lib.mkFlake { inherit inputs; } {
imports = [ inputs.devshell.flakeModule ];
systems = [ "x86_64-linux" ];
perSystem = { config, self', inputs', pkgs, system, ... }: {
devshells.default = {
packages = with pkgs; [ php82 php82Packages.composer ];
};
};
flake = { };
};
}