24 lines
411 B
Nix
24 lines
411 B
Nix
{
|
|
lib,
|
|
modulesPath,
|
|
...
|
|
}:
|
|
|
|
{
|
|
imports = [
|
|
(modulesPath + "/installer/cd-dvd/iso-image.nix")
|
|
];
|
|
|
|
config = {
|
|
isoImage.makeEfiBootable = true;
|
|
isoImage.makeUsbBootable = true;
|
|
|
|
me.buildingPortable = true;
|
|
me.mountPersistence = lib.mkForce false;
|
|
me.optimizations.enable = lib.mkForce false;
|
|
me.image_based_appliance.enable = true;
|
|
|
|
# TODO: image based appliance?
|
|
};
|
|
}
|