diff --git a/modules/outputs/ubifs.nix b/modules/outputs/ubifs.nix index b7a7c61..4dfc884 100644 --- a/modules/outputs/ubifs.nix +++ b/modules/outputs/ubifs.nix @@ -13,11 +13,6 @@ in ./initramfs.nix ]; - options.system.outputs.rootubifs = mkOption { - type = types.package; - internal = true; - }; - options.hardware.ubi = { minIOSize = mkOption { type = types.str; }; logicalEraseBlockSize = mkOption { type = types.str; }; # LEB @@ -33,7 +28,7 @@ in }; boot.initramfs.enable = true; system.outputs = { - rootubifs = + rootfs = let inherit (pkgs.pkgsBuildBuild) runCommand mtdutils; cfg = config.hardware.ubi; diff --git a/modules/outputs/ubivolume.nix b/modules/outputs/ubivolume.nix index 71c5231..1d82292 100644 --- a/modules/outputs/ubivolume.nix +++ b/modules/outputs/ubivolume.nix @@ -81,7 +81,7 @@ in ]); disk = ubiDisk { - initramfs = config.system.outputs.rootubifs; # liminix.builders.squashfs config.filesystem.contents; # # assert this is a proper FIT. + initramfs = config.system.outputs.rootfs; # ??? }; in