1let
2 pkgs = import ../. {
3 config = {};
4 overlays = [];
5 };
6
7 common = import ./common.nix;
8 inherit (common) outputPath indexPath;
9
10 web-devmode = import ../pkgs/tools/nix/web-devmode.nix {
11 inherit pkgs;
12 buildArgs = "./.";
13 open = "/${outputPath}/${indexPath}";
14 };
15in
16 pkgs.mkShell {
17 packages = [
18 web-devmode
19 ];
20 }