lipu-pali/flake.nix
irl 85da2f5834
Some checks failed
Build and deploy / lint (push) Has been cancelled
feat: build and deploy with netlify
2025-06-03 16:52:34 +01:00

31 lines
544 B
Nix

{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs =
{
self,
nixpkgs,
flake-utils,
...
}:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = import nixpkgs {
inherit system;
};
in
with pkgs;
{
devShells.default = mkShell {
buildInputs = [
git
netlify-cli
nodejs_22
];
};
}
);
}