master
1{
2 description = "Astral Halo - A Static Blog Generator Powered by Astro";
3
4 inputs = {
5 nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
6 flake-utils.url = "github:numtide/flake-utils";
7 };
8
9 outputs = inputs:
10 inputs.flake-utils.lib.eachDefaultSystem (system: let
11 pkgs = import inputs.nixpkgs {inherit system;};
12 in {
13 devShell = pkgs.mkShell {
14 buildInputs = with pkgs; [
15 nodejs_22
16 pnpm_10
17 ];
18 };
19 });
20}