MODULE.bazel: move additional MODULE.bazel files to build/bazel

Don't mind me while I cleaning up the root directory 🧹

Change-Id: I81678f56073a5d7acf283e10a08912d75bba4c73
Reviewed-on: https://review.monogon.dev/c/monogon/+/3356
Reviewed-by: Lorenz Brun <lorenz@monogon.tech>
Tested-by: Jenkins CI
diff --git a/MODULE.bazel b/MODULE.bazel
index b7ceed1..a25ccc7 100644
--- a/MODULE.bazel
+++ b/MODULE.bazel
@@ -95,10 +95,10 @@
 
 register_toolchains("//build/rust:prost_efi_toolchain")
 
-include("//:rust.MODULE.bazel")
+include("//build/bazel:rust.MODULE.bazel")
 
-include("//:go.MODULE.bazel")
+include("//build/bazel:go.MODULE.bazel")
 
-include("//:oci.MODULE.bazel")
+include("//build/bazel:oci.MODULE.bazel")
 
-include("//:third_party.MODULE.bazel")
+include("//build/bazel:third_party.MODULE.bazel")
diff --git a/build/bazel/BUILD.bazel b/build/bazel/BUILD.bazel
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/build/bazel/BUILD.bazel
diff --git a/go.MODULE.bazel b/build/bazel/go.MODULE.bazel
similarity index 100%
rename from go.MODULE.bazel
rename to build/bazel/go.MODULE.bazel
diff --git a/oci.MODULE.bazel b/build/bazel/oci.MODULE.bazel
similarity index 100%
rename from oci.MODULE.bazel
rename to build/bazel/oci.MODULE.bazel
diff --git a/rust.MODULE.bazel b/build/bazel/rust.MODULE.bazel
similarity index 100%
rename from rust.MODULE.bazel
rename to build/bazel/rust.MODULE.bazel
diff --git a/third_party.MODULE.bazel b/build/bazel/third_party.MODULE.bazel
similarity index 99%
rename from third_party.MODULE.bazel
rename to build/bazel/third_party.MODULE.bazel
index 66c73c8..52fe2bc 100644
--- a/third_party.MODULE.bazel
+++ b/build/bazel/third_party.MODULE.bazel
@@ -1,7 +1,9 @@
 # third_party external repositories
 
 git_repository = use_repo_rule("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
+
 http_archive = use_repo_rule("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
+
 http_file = use_repo_rule("@bazel_tools//tools/build_defs/repo:http.bzl", "http_file")
 
 # Used by tests in cloud/takeover
@@ -58,7 +60,6 @@
     ],
 )
 
-
 # Derived from Mozilla NSS, currently needed for containerd to be able to pull images
 http_file(
     name = "cacerts",