diff --git a/modules/hardware.nix b/modules/hardware.nix
index 056cd04f..fc62021e 100644
--- a/modules/hardware.nix
+++ b/modules/hardware.nix
@@ -13,6 +13,12 @@ in
   options = {
     boot = { };
     hardware = {
+      ubi = {
+        minIOSize = mkOption { type = types.str; };
+        logicalEraseBlockSize = mkOption { type = types.str; }; # LEB
+        physicalEraseBlockSize = mkOption { type = types.str; }; # PEB
+        maxLEBcount = mkOption { type = types.str; }; # LEB
+      };
       dts = {
         src = mkOption {
           type = types.nullOr types.path;
diff --git a/modules/outputs/ubifs.nix b/modules/outputs/ubifs.nix
index 4dfc8847..badfc498 100644
--- a/modules/outputs/ubifs.nix
+++ b/modules/outputs/ubifs.nix
@@ -13,13 +13,6 @@ in
     ./initramfs.nix
   ];
 
-  options.hardware.ubi = {
-    minIOSize = mkOption { type = types.str; };
-    logicalEraseBlockSize = mkOption { type = types.str; }; # LEB
-    physicalEraseBlockSize = mkOption { type = types.str; }; # PEB
-    maxLEBcount = mkOption { type = types.str; }; # LEB
-  };
-
   config = mkIf (config.rootfsType == "ubifs") {
     kernel.config = {
       MTD_UBI="y";