This commit is contained in:
Oliver Davies 2025-10-02 07:58:12 +01:00
parent 247ff913b3
commit b96f5b114c
60 changed files with 0 additions and 0 deletions

19
old/zet/flake.nix Normal file
View file

@ -0,0 +1,19 @@
# Do not edit this file. It is automatically generated by https://www.oliverdavies.uk/build-configs.
{
description = "A Nix Flake for sculpin-skeleton";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
outputs = { nixpkgs, ... }:
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
inherit (pkgs) mkShell;
in {
devShells.${system}.default =
mkShell { buildInputs = with pkgs; [ php81 php81Packages.composer ]; };
formatter.${system} = pkgs.nixfmt;
};
}