laptop image tiers, devshell, partition preserve, cleanup

Images:
- laptopUpstream: bare OS install with AHCI, no templates
- laptopSlim: essentials only (debloat, registry tweaks)
- laptop: full (essentials + all apps)
- win10/win11 images use rec for self-references

CLI:
- preserve recovery partition (4) during disk copy
- expand partition 3 up to partition 4 boundary
- remove VNC CLI flag (use vncDisplay in nix configs instead)

Flake:
- add devShell with vmix alias and PS1 prompt

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Git Sagar 2026-05-24 13:32:18 -03:00
parent ee64eef7e1
commit 20e8b98fec
5 changed files with 52 additions and 7 deletions

View file

@ -44,6 +44,26 @@ in rec {
# Bundles — reusable template lists for common use cases
bundles = {
# Essentials only: debloat + registry tweaks, no apps
laptopSlim = [
essentials.removeIE
essentials.removeWMP
essentials.removeEdge
essentials.vcppRuntimes
essentials.bestPerformance
reg.disableTelemetry
reg.disableErrorReporting
reg.disableUpdates
reg.disableSmartScreen
reg.disablePrivacyTracking
reg.disableAI
reg.disableConsumerFeatures
reg.performanceTweaks
apps.thorium
apps.sevenZip
];
# Full: essentials + apps
laptop = [
essentials.removeIE
essentials.removeWMP