12 lines
185 B
Nix
12 lines
185 B
Nix
{ modulesPath, ... }:
|
|
|
|
{
|
|
imports = [
|
|
(modulesPath + "/installer/cd-dvd/iso-image.nix")
|
|
./minimal.nix
|
|
];
|
|
|
|
isoImage.makeUsbBootable = true;
|
|
|
|
networking.hostName = "iso";
|
|
} |