23 lines
456 B
Nix
23 lines
456 B
Nix
{
|
|
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 = [
|
|
pkgs.nodejs-slim-18_x
|
|
pkgs.nodePackages.pnpm
|
|
pkgs.sassc
|
|
pkgs.entr
|
|
];
|
|
in {
|
|
devShell.${system} = pkgs.mkShell {
|
|
inherit buildInputs;
|
|
};
|
|
};
|
|
}
|