mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 06:22:56 +00:00
20 lines
376 B
Nix
20 lines
376 B
Nix
|
{ config, lib, modulesPath, ... }:
|
||
|
{
|
||
|
|
||
|
# options.iso.enable = lib.mkEnableOption "Enable creating as an ISO.";
|
||
|
#
|
||
|
# imports = [ "${toString modulesPath}/installer/cd-dvd/iso-image.nix" ];
|
||
|
|
||
|
# config = lib.mkIf config.iso.enable {
|
||
|
#
|
||
|
# # EFI booting
|
||
|
# isoImage.makeEfiBootable = true;
|
||
|
#
|
||
|
# # USB booting
|
||
|
# isoImage.makeUsbBootable = true;
|
||
|
#
|
||
|
# };
|
||
|
|
||
|
}
|
||
|
|