lipu-pali/flake.nix
irl f3d4257a4b
All checks were successful
Build and deploy / deploy (push) Successful in 2m6s
feat: build and deploy with netlify
2025-06-03 17:19:15 +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
];
};
}
);
}