···91919292## Disk Partitioning
93939494-The config is set to `manual_partitioning` - archinstall will guide you through:
9494+The configuration is **fully automated** for replacing Fedora on `/dev/nvme0n1`.
9595+9696+### What It Does
9797+9898+The archinstall config will:
9999+1. **Keep** the existing EFI partition (600M) - **NO FORMATTING**
100100+2. **Delete** existing partitions 2 and 3 (old /boot and Fedora root)
101101+3. **Create** new root partition using all remaining space (~464G)
102102+4. **Enable** zram swap (configured via `"swap": true`)
951039696-### Recommended Layout (UEFI):
104104+### Resulting Layout
97105```
9898-/dev/nvme0n1p1 512M EFI System /boot
9999-/dev/nvme0n1p2 Rest Linux filesystem /
100100-swap 8-16G Linux swap [swap]
106106+/dev/nvme0n1p1 600M EFI (existing) /boot [KEPT - not wiped]
107107+/dev/nvme0n1p2 ~464G ext4 (new) / [FORMATTED]
108108+[zram0] ~8G zram [swap] [IN-MEMORY]
101109```
102110103103-### For dual-boot or existing EFI:
104104-- Reuse existing EFI partition (don't format!)
105105-- Create new partition for Arch root
111111+### IMPORTANT: Different Disk?
112112+113113+If your disk is **NOT** `/dev/nvme0n1`, edit the config before running:
114114+115115+```bash
116116+# Check your disk name
117117+lsblk
118118+119119+# Edit the config to change device
120120+nvim archinstall-config.json
121121+# Change "device": "/dev/nvme0n1" to your disk (e.g., /dev/sda)
122122+```
106123107124## Customization
108125