lab/symfony/flake.nix
Oliver Davies 7671099aea Migrate to flake-parts
Signed-off-by: Oliver Davies <oliver@oliverdavies.uk>
2025-10-07 22:51:44 +01:00

27 lines
594 B
Nix

{
inputs = {
devshell.url = "github:numtide/devshell";
flake-parts.url = "github:hercules-ci/flake-parts";
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
};
outputs =
inputs:
inputs.flake-parts.lib.mkFlake { inherit inputs; } {
imports = [ inputs.devshell.flakeModule ];
systems = [ "x86_64-linux" ];
perSystem =
{ pkgs, ... }:
{
devshells.default = {
packages = with pkgs; [
php
phpPackages.composer
symfony-cli
];
};
};
};
}