Setup devshell.

This commit is contained in:
2025-01-19 16:52:36 +00:00
parent 4d64c425c1
commit 22148060e4
2 changed files with 18 additions and 0 deletions

17
flake.nix Normal file
View File

@@ -0,0 +1,17 @@
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
};
outputs = { self, nixpkgs }:
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in {
devShells.${system}.default = pkgs.mkShell {
buildInputs = with pkgs; [
php84Packages.composer
];
};
};
}