18 lines
233 B
Nix
18 lines
233 B
Nix
{
|
|
modulesPath,
|
|
...
|
|
}:
|
|
|
|
{
|
|
imports = [
|
|
(modulesPath + "/installer/sd-card/sd-image.nix")
|
|
];
|
|
|
|
config = {
|
|
isoImage.makeEfiBootable = true;
|
|
isoImage.makeUsbBootable = true;
|
|
|
|
# TODO: image based appliance?
|
|
};
|
|
}
|