diff --git a/meta/plugins/cli.py b/meta/plugins/cli.py
index 5442166..412f032 100644
--- a/meta/plugins/cli.py
+++ b/meta/plugins/cli.py
@@ -1,6 +1,6 @@
 from cutekit import cli, model, shell, builder
 
-@cli.command(None, "boot", "Boot the kernel inside of Qemu")
+@cli.command("boot", "Boot the kernel inside of Qemu")
 def _(args: model.RegistryArgs):
     registry = model.Registry.use(args)
 
diff --git a/meta/plugins/hooks.py b/meta/plugins/hooks.py
index 36b5102..7fa61a9 100644
--- a/meta/plugins/hooks.py
+++ b/meta/plugins/hooks.py
@@ -22,12 +22,11 @@ def build(
     scope: builder.TargetScope,
     components: Union[list[model.Component], model.Component, Literal["all"]] = "all",
     generateCompilationDb: bool = False,
-    noParallel: bool = False,
 ) -> list[builder.ProductScope]:
     for k, v in _hooks.items():
         print(f"Running hook '{k}'")
         v(scope)
-    return _original_build(scope, components, generateCompilationDb, noParallel)
+    return _original_build(scope, components, generateCompilationDb)
 
 
 builder.build = build