dotfiles/modules/nixos/hardware/iso.nix

23 lines
382 B
Nix
Raw Normal View History

2024-04-20 13:42:06 +00:00
{
config,
lib,
modulesPath,
...
}:
2024-03-24 17:16:20 +00:00
{
# 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;
#
# };
}