{ description = "arnes.space dev and build environment"; inputs = { nixpkgs.url = github:NixOS/nixpkgs; }; outputs = { self, nixpkgs }: let system = "x86_64-linux"; pkgs = import nixpkgs { inherit system; }; lib = pkgs.lib; buildInputs = with pkgs; [ nodejs-slim-16_x nodePackages.pnpm sassc entr ]; in { devShell.${system} = pkgs.mkShell { inherit buildInputs; }; }; }