1
Fork 0

Extensible devshell setup

This commit is contained in:
Matei Adriel 2023-04-14 18:12:35 +03:00
parent d60ee39658
commit ecb1325477
No known key found for this signature in database
4 changed files with 25 additions and 10 deletions

4
devshells/default.nix Normal file
View file

@ -0,0 +1,4 @@
args: {
visonum = import ./visonum.nix args;
}

5
devshells/visonum.nix Normal file
View file

@ -0,0 +1,5 @@
# Shell containing the tools I most commonly use for work
{ pkgs, inputs }:
pkgs.mkShell {
nativeBuildInputs = with pkgs; [ purescript spago typescript nodejs ];
}