upload to gh

This commit is contained in:
specCon18 2024-05-15 16:59:36 -04:00
parent d9d8d06b8a
commit f2407a9587
33 changed files with 941 additions and 83 deletions

24
flake.nix Normal file
View file

@ -0,0 +1,24 @@
{
description = "A js development environment";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils, ... }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs {
inherit system;
overlays = [];
};
in
{
devShell = pkgs.mkShell {
buildInputs = [
pkgs.nodejs_22
pkgs.yarn
];
};
});
}