We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1cd799c commit d6f69dfCopy full SHA for d6f69df
.vscode/settings.json
@@ -0,0 +1,3 @@
1
+{
2
+ "nixEnvSelector.nixFile": "${workspaceFolder}/default.nix"
3
+}
default.nix
@@ -0,0 +1,17 @@
+ pkgs ? import <nixpkgs> { },
+}:
4
+
5
+pkgs.mkShell rec {
6
+ buildInputs = [
7
+ # Nix formatter
8
+ pkgs.nixfmt-rfc-style
9
10
+ # Tools
11
+ pkgs.git
12
13
+ # Node
14
+ pkgs.nodejs
15
+ pkgs.nodejs.pkgs.pnpm
16
+ ];
17
0 commit comments