# Pre-built Win11 LTSC 2024 images from upstream ISO # Pipeline: makeImage (Audit Mode) → essentials → apps → registry { pkgs, lib, system, windows, upstreamISOs, ... }: with windows; { ltsc = rec { upstream = makeImage { name = "win11-ltsc-2024"; upstreamISO = upstreamISOs.win11-ltsc-2024; productKey = "M7XTQ-FN8P6-TTKYV-9D4CC-J462D"; bypassRequirements = true; windowsVersionForVirtioDrivers = "w11"; }; basic = customizeImageFold upstream (with templates; [ essentials.virtioTools essentials.removeIE essentials.removeWMP essentials.removeEdge essentials.vcppRuntimes essentials.bestPerformance reg.hardened reg.disableUCPD apps.edgeWebview apps.thorium ]); withApps = customizeImageFold basic (with templates; [ apps.sandboxie apps.sevenZip apps.vlc apps.imageGlass apps.office ]); withAMDGPU = customizeImage basic templates.essentials.amdGpuDrivers; }; }