mirror of
https://github.com/nix-community/nixos-generators.git
synced 2024-11-30 01:39:36 +03:00
16 lines
268 B
Nix
16 lines
268 B
Nix
{ config, modulesPath, ... }:
|
|
{
|
|
imports = [
|
|
"${toString modulesPath}/installer/cd-dvd/iso-image.nix"
|
|
];
|
|
|
|
# EFI booting
|
|
isoImage.makeEfiBootable = true;
|
|
|
|
# USB booting
|
|
isoImage.makeUsbBootable = true;
|
|
|
|
formatAttr = "isoImage";
|
|
filename = "*.iso";
|
|
}
|