17 lines
560 B
Nix
17 lines
560 B
Nix
# ── buildbox rescue / installer ISO ────────────────────────────
|
|
# ISO for VM deployment. Supports both BIOS (SeaBIOS) and
|
|
# UEFI boot for maximum Proxmox compatibility.
|
|
{ config, pkgs, pkgs-unstable, lib, ... }: {
|
|
imports = [
|
|
../iso/default.nix
|
|
];
|
|
|
|
# Support both BIOS and UEFI boot
|
|
isoImage.makeBiosBootable = true;
|
|
isoImage.makeEfiBootable = true;
|
|
|
|
iso.extraPackages = with pkgs; [btrfs-progs];
|
|
iso.diskoConfig = ./disko-config.nix;
|
|
iso.description = "buildbox Rescue ISO";
|
|
}
|