Files
nixos-config/hosts/buildbox/iso.nix
T
rogueking 649c2f986b
Build NixOS ISOs / build-iso (buildbox) (push) Failing after 51s
fixing iso issue
2026-06-14 22:34:58 -04:00

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";
}