diff options
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..f46e295 --- /dev/null +++ b/flake.nix @@ -0,0 +1,7 @@ +{ + outputs = { nixpkgs, flake-utils, ... }: flake-utils.lib.eachDefaultSystem (system: { + devShells.default = with import nixpkgs { inherit system; }; mkShell { + buildInputs = [ nodejs ]; + }; + }); +}
\ No newline at end of file |
