switch from HWID to TSforge activation

HWID is hardware-tied and doesn't survive VM migration. TSforge
manipulates the physical activation store directly and is portable.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Git Sagar 2026-06-08 21:09:09 +05:30
parent 4c1b710308
commit a588dddc1e
6 changed files with 136 additions and 10 deletions

View file

@ -9,7 +9,9 @@ rec {
upstreamISO = upstreamISOs.win10-ltsc-2021;
productKey = "M7XTQ-FN8P6-TTKYV-9D4CC-J462D";
};
basic = customizeImageFold upstream (with templates; [
# Apply all available Windows Updates (cumulative, .NET, Defender)
updated = customizeImage upstream (templates.essentials.windowsUpdate {});
basic = customizeImageFold updated (with templates; [
essentials.virtioTools
essentials.removeIE
essentials.removeWMP
@ -38,8 +40,9 @@ rec {
productKey = "M7XTQ-FN8P6-TTKYV-9D4CC-J462D";
useAHCI = true;
};
laptopUpdated = customizeImage laptopUpstream (templates.essentials.windowsUpdate {});
laptopSlim = customizeImageFold laptopUpstream templates.bundles.laptopSlim;
laptopSlim = customizeImageFold laptopUpdated templates.bundles.laptopSlim;
laptop = customizeImageFold laptopUpstream templates.bundles.laptop;
laptop = customizeImageFold laptopUpdated templates.bundles.laptop;
}