versa/flake.nix

20 lines
531 B
Nix
Raw Permalink Normal View History

2024-02-19 08:00:00 +00:00
# Do not edit this file. It is automatically generated by https://www.oliverdavies.uk/build-configs.
{
2024-03-30 18:05:29 +00:00
description = "A Nix Flake for versa";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
2024-02-19 08:00:00 +00:00
2024-03-30 18:05:29 +00:00
outputs = { nixpkgs, ... }:
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
2024-02-19 08:00:00 +00:00
2024-03-30 18:05:29 +00:00
inherit (pkgs) mkShell;
in {
devShells.${system}.default =
mkShell { buildInputs = with pkgs; [ php82 php82Packages.composer ]; };
2024-02-19 08:00:00 +00:00
2024-03-30 18:05:29 +00:00
formatter.${system} = pkgs.nixfmt;
2024-02-19 08:00:00 +00:00
};
}