blob: dd5407d68851a68acf89f9e5a59c3b64a0b948c5 [file] [log] [blame]
Skyler Grey8e4e1832022-10-21 23:28:39 +01001{
2 description = "A basic flake with a shell";
3 inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
4 inputs.flake-utils.url = "github:numtide/flake-utils";
5
6 outputs = { self, nixpkgs, flake-utils }:
7 flake-utils.lib.eachDefaultSystem (system: let
8 pkgs = nixpkgs.legacyPackages.${system};
9 in {
10 devShells.default = pkgs.mkShell {
Skyler Greyf4fc0bd2023-12-11 17:53:26 +000011 nativeBuildInputs = with pkgs; [nodejs-18_x nodePackages.pnpm];
Skyler Grey8e4e1832022-10-21 23:28:39 +010012 buildInputs = [ ];
13 };
14 });
15}