diff --git a/docs/dev/README.rst b/docs/dev/README.rst
index 36af5307ae4b75fb561e72aa8ea1d60303602799..a437c26f48c4ff65b3389d333be245ee5fb5ba14 100644
--- a/docs/dev/README.rst
+++ b/docs/dev/README.rst
@@ -56,6 +56,17 @@ That will update ``nixpkgs.json`` to the latest release on the nixos release cha
 To update the channel, the script will need to be updated,
 along with the filenames that have the channel in them.
 
+To create a text summary of what an update changes - to put in Merge Requests, for example - run:
+
+.. code: shell
+
+    nix-build -A morph -o result-before
+    update-nixpkgs
+    nix-build -A morph -o result-after
+    nix-shell -p nixUnstable
+    nix --extra-experimental-features nix-command store diff-closures ./result-before/ ./result-after/
+
+
 Gitlab Repositories
 ```````````````````
 To update the version of packages we import from gitlab, run:
diff --git a/tools/update-nixpkgs.rst b/tools/update-nixpkgs.rst
deleted file mode 100644
index 3888ecaa41b61a5b5e07f93b0f8f4b48ac54e210..0000000000000000000000000000000000000000
--- a/tools/update-nixpkgs.rst
+++ /dev/null
@@ -1,8 +0,0 @@
-To create a nice summary text to of what an update will change - to put in Merge Requests, for example - run::
-
-    nix-build -A morph -o result-before
-    update-nixpkgs
-    nix-build -A morph -o result-after
-    nix-shell -p nixUnstable
-    nix --extra-experimental-features nix-command store diff-closures ./result-before/ ./result-after/
-