tangled
alpha
login
or
join now
thecoded.prof
/
shells
0
fork
atom
A collection of easily useable/reusable nilla shells
0
fork
atom
overview
issues
pulls
pipelines
feat: add node shell
thecoded.prof
2 weeks ago
cb50e471
9934ca6b
verified
This commit was signed with the committer's
known signature
.
thecoded.prof
SSH Key Fingerprint:
SHA256:ePn0u8NlJyz3J4Zl9MHOYW3f4XKoi5K1I4j53bwpG0U=
+20
1 changed file
expand all
collapse all
unified
split
nilla.nix
+20
nilla.nix
···
43
43
};
44
44
};
45
45
46
46
+
shells.node = {
47
47
+
systems = [ "x86_64-linux" ];
48
48
+
49
49
+
shell =
50
50
+
{
51
51
+
pkgs,
52
52
+
mkShell,
53
53
+
}:
54
54
+
mkShell {
55
55
+
packages = [
56
56
+
pkgs.nodejs_24
57
57
+
pkgs.eslint_d
58
58
+
pkgs.eslint
59
59
+
pkgs.typescript
60
60
+
pkgs.typescript-language-server
61
61
+
pkgs.package-version-server
62
62
+
];
63
63
+
};
64
64
+
};
65
65
+
46
66
shells.typst = {
47
67
systems = [ "x86_64-linux" ];
48
68