We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8334a8a commit 46bc935Copy full SHA for 46bc935
README.md
@@ -1,9 +1,9 @@
1
# flakes
2
3
-JavaScript environment:
+Web development environment:
4
5
```bash
6
-nix develop github:stackptr/flakes#js
+nix develop github:stackptr/flakes#web
7
8
# Also the default shell:
9
nix develop github:stackptr/flakes
flake.nix
@@ -34,14 +34,14 @@
34
self',
35
...
36
}: {
37
- devShells.js = pkgs.mkShell {
38
- name = "js";
+ devShells.web = pkgs.mkShell {
+ name = "web";
39
buildInputs = with pkgs; [
40
nodejs
41
typescript
42
];
43
};
44
- devShells.default = self'.devShells.js;
+ devShells.default = self'.devShells.web;
45
formatter = pkgs.alejandra;
46
47
});
0 commit comments