diff options
| author | uakci <git@uakci.space> | 2024-04-13 13:48:55 +0000 |
|---|---|---|
| committer | uakci <git@uakci.space> | 2024-04-13 13:48:55 +0000 |
| commit | 7d14ee03e9fdad3736f14748115ad5a55c0dcd53 (patch) | |
| tree | d9cf89e7bfa9b82a7551197cfb4a853c7826313a /flake.nix | |
| download | runicity-main.tar.gz runicity-main.zip | |
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 |
