summary refs log tree commit diff
path: root/nixos/doc/manual/shell.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/doc/manual/shell.nix')
-rw-r--r--nixos/doc/manual/shell.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/nixos/doc/manual/shell.nix b/nixos/doc/manual/shell.nix
new file mode 100644
index 00000000000..e5ec9b8f97f
--- /dev/null
+++ b/nixos/doc/manual/shell.nix
@@ -0,0 +1,8 @@
+let
+  pkgs = import ../../.. { };
+in
+pkgs.mkShell {
+  name = "nixos-manual";
+
+  packages = with pkgs; [ xmlformat jing xmloscopy ruby ];
+}