Skip to content

Commit

Permalink
add Nix flake for developer shell
Browse files Browse the repository at this point in the history
  • Loading branch information
deej-io committed Jul 29, 2024
1 parent f0af3ee commit f8c7d18
Show file tree
Hide file tree
Showing 2 changed files with 87 additions and 0 deletions.
61 changes: 61 additions & 0 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 26 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
description = "MML 3D WebExperience Development Flake";

inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};

outputs =
{
self,
nixpkgs,
flake-utils,
}:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = import nixpkgs { inherit system; };
in
{
devShells = {
default = pkgs.mkShell { buildInputs = [ pkgs.nodejs_20 ]; };
};
}
);
}

0 comments on commit f8c7d18

Please sign in to comment.