Back to a regular flake

This commit is contained in:
Oliver Davies 2025-03-30 21:17:25 +01:00
parent cc8cdbcf96
commit 84cc801e70
8 changed files with 65 additions and 174 deletions

21
flake.nix Normal file
View file

@ -0,0 +1,21 @@
{
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 {
buildInputs = with pkgs; [
php83
php83Packages.composer
tailwindcss
];
};
formatter.${system} = pkgs.nixfmt-rfc-style;
};
}