10 lines
263 B
Nix
10 lines
263 B
Nix
{ modulesPath, ... }: {
|
|
imports =
|
|
[ ../profiles/develop "${modulesPath}/installer/cd-dvd/iso-image.nix" ];
|
|
|
|
isoImage.makeEfiBootable = true;
|
|
isoImage.makeUsbBootable = true;
|
|
networking.networkmanager.enable = true;
|
|
users.users.root.password = "";
|
|
}
|