oliverdavies.uk/sculpin/flake.nix

28 lines
608 B
Nix
Raw Normal View History

2025-03-30 21:17:25 +01:00
{
2025-10-10 02:33:03 +01:00
inputs = {
devshell.url = "github:numtide/devshell";
flake-parts.url = "github:hercules-ci/flake-parts";
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
};
2025-03-30 21:17:25 +01:00
2025-10-10 02:33:03 +01:00
outputs =
inputs:
inputs.flake-parts.lib.mkFlake { inherit inputs; } {
imports = [ inputs.devshell.flakeModule ];
systems = [ "x86_64-linux" ];
perSystem =
{ pkgs, ... }:
{
devshells.default = {
packages = with pkgs; [
nodePackages.browser-sync
php
phpPackages.composer
];
};
2025-10-06 01:10:57 +01:00
};
2025-03-30 21:17:25 +01:00
};
}