21 lines
392 B
Nix
21 lines
392 B
Nix
|
{
|
||
|
description = "nothing.run website";
|
||
|
inputs.flake-utils.url = "github:numtide/flake-utils";
|
||
|
|
||
|
outputs = {
|
||
|
self,
|
||
|
nixpkgs,
|
||
|
flake-utils,
|
||
|
}:
|
||
|
flake-utils.lib.eachDefaultSystem
|
||
|
(
|
||
|
system: let
|
||
|
pkgs = nixpkgs.legacyPackages.${system};
|
||
|
in {
|
||
|
devShells.default = pkgs.mkShell {
|
||
|
packages = with pkgs;[nodejs];
|
||
|
};
|
||
|
}
|
||
|
);
|
||
|
}
|