We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a76d6f commit e9cb170Copy full SHA for e9cb170
.envrc
@@ -1 +1 @@
1
-use guix
+use nix
shell.nix
@@ -0,0 +1,17 @@
+{ pkgs ? import <nixpkgs> {} }:
2
+
3
+pkgs.mkShell {
4
+ buildInputs = with pkgs; [
5
+ pkg-config
6
+ rustc
7
+ cargo
8
+ rust-analyzer
9
+ python3
10
+ ruby
11
+ gcc
12
+ go
13
+ nodejs
14
+ lua
15
+ bash
16
+ ];
17
+}
0 commit comments