Skip to content

Commit e9cb170

Browse files
committed
Add nix shell file
1 parent 1a76d6f commit e9cb170

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

.envrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
use guix
1+
use nix

shell.nix

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{ 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

Comments
 (0)