25 lines
586 B
Nix
25 lines
586 B
Nix
# Do not edit this file. It is automatically generated by https://www.oliverdavies.uk/build-configs.
|
|
{
|
|
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
|
|
outputs =
|
|
{ nixpkgs, ... }:
|
|
let
|
|
system = "x86_64-linux";
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
in
|
|
{
|
|
devShells.${system}.default = pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
bashInteractive
|
|
nodePackages.pnpm
|
|
nodejs
|
|
php82
|
|
php82Packages.composer
|
|
];
|
|
};
|
|
|
|
formatter.${system} = pkgs.nixfmt-rfc-style;
|
|
};
|
|
}
|