oliverdavies.uk/sculpin/flake.nix

21 lines
412 B
Nix
Raw Permalink Normal View History

2025-03-30 21:17:25 +01:00
{
2025-10-06 01:10:57 +01:00
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
2025-03-30 21:17:25 +01:00
2025-10-06 01:10:57 +01:00
outputs = inputs:
let
system = "x86_64-linux";
pkgs = import inputs.nixpkgs { inherit system; };
in
{
devShells.${system}.default =
with pkgs;
mkShell {
buildInputs = [
nodePackages.browser-sync
php
phpPackages.composer
];
};
2025-03-30 21:17:25 +01:00
};
}