nixpkgs/nixos/doc/manual/shell.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
327 B
Nix
Raw Normal View History

let
pkgs = import ../../.. {
2024-07-26 17:44:13 +00:00
config = { };
overlays = [ ];
};
common = import ./common.nix;
inherit (common) outputPath indexPath;
in
2024-07-26 17:44:13 +00:00
pkgs.callPackage ../../../pkgs/tools/nix/web-devmode.nix {
buildArgs = "../../release.nix -A manualHTML.${builtins.currentSystem}";
open = "/${outputPath}/${indexPath}";
}