1
Fork 0
satellite/devshells/visonum.nix

7 lines
257 B
Nix
Raw Normal View History

2023-04-14 17:12:35 +02:00
# Shell containing the tools I most commonly use for work
{ pkgs, inputs }:
let unstable = inputs.nixpkgs-unstable.legacyPackages.${pkgs.system}; in
2023-04-14 17:12:35 +02:00
pkgs.mkShell {
nativeBuildInputs = with pkgs; [ unstable.purescript unstable.spago typescript nodejs ];
2023-04-14 17:12:35 +02:00
}