# Pre-built Win10 LTSC 2021 images from upstream ISO # Pipeline: makeImage (Audit Mode) → essentials → apps → registry → generalize { pkgs, lib, system, windows, upstreamISOs, ... }: with windows; { ltsc = rec { upstream = makeImage { name = "win10-ltsc-2021"; upstreamISO = upstreamISOs.win10-ltsc-2021; productKey = "M7XTQ-FN8P6-TTKYV-9D4CC-J462D"; }; basic = customizeImageFold upstream (with templates; [ essentials.virtioTools essentials.removeIE essentials.removeWMP essentials.removeEdge essentials.vcppRuntimes essentials.bestPerformance reg.hardened 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; }; }