Power & UPS
Home server power budget: idle watts and yearly cost
A NAS that idles at 100W costs about $158/year US, £216 UK, €307 EU. The same workload on a tuned N100 mini-ITX idling at 12W costs $19/year US, £26 UK, €37 EU — a $140-280/year delta that pays for the N100 board in one year. Power optimization on a home server isn't a hobbyist concern in 2026; with energy prices where they are, the wattage difference between a stock untuned tower and a tuned low-power build is the largest single line item in NAS operating cost.
Power adders dominate the budget
Reference images and diagrams. Click any image to view full resolution.
Who this is for
Home operators running an existing NAS or building new in 2025-2026, evaluating 'what does my idle wattage actually cost me per year' and how to reduce it without breaking functionality.
Outcome
A measured idle-wattage baseline, an optimization tactic list ranked by impact, and a 1-2 year cost projection at current electricity rates. Operator can decide whether to keep current setup, tune it, or migrate to a low-power platform.
Required inputs
- A Kill-A-Watt or equivalent power meter (or an APC UPS with LCD that reports load).
- Access to BIOS / firmware settings on the NAS or host.
- Knowledge of current electricity rate ($/kWh or £/kWh or €/kWh).
- Tolerance for downtime to apply BIOS / kernel parameter changes.
Step-by-step procedure
Measure current idle wattage at the wall
Do: Plug NAS power cord into Kill-A-Watt; wait 30 min for HDDs to spin down (if enabled); record idle wattage in two states: HDDs spun down and HDDs spinning.
Expected result: Two numbers: idle-with-spun-down-drives + idle-with-drives-spinning.
If not: Without measurement, you'll optimize blindly. The wattage delta between platforms is too large to estimate.
Calculate annual cost at your local electricity rate
Do: Annual kWh = idle watts × 24 × 365 / 1000. Annual cost = kWh × your rate. Compare to a tuned target (10-15W for SSD-only N100; 25-40W for typical Unraid).
Expected result: Specific $/year (or £/€) figure. Gap to target is the optimization budget.
If not: If your current cost is fine (<$50/year), optimization may not justify the work.
Apply the highest-impact optimization first: HDD spin-down (existing systems)
Do: Enable spin-down (Synology: Control Panel > HDD/SSD > HDD Hibernation; Unraid: Settings > Disk Settings; TrueNAS Scale: per-disk). Audit what prevents spin-down: Plex library auto-scan, video preview thumbnails, intro detection — disable all three. Mover schedule on Unraid: change from hourly to nightly. Re-measure after 24 hours of normal use.
Expected result: Drives spun down for 16+ hours/day; idle wattage drops by 5W per drive that spins down successfully.
If not: If drives don't stay down, identify what's keeping them awake (Plex is the most common culprit) and fix it.
Enable PCIe ASPM (systems with dGPU or PCIe-attached NIC)
Do: BIOS > Advanced > PCIe > ASPM = Enabled (L1 or L1 substates). Also enable Package C-State at C10. On Linux: verify with `lspci -vv | grep -i aspm`. On Windows: Power Options > advanced > PCI Express > Link State Power Management = Maximum power savings.
Expected result: Idle wattage drops 5-15W on Intel 12/13th gen; Arc A380 idle drops ~10W; whole system reaches deeper C-states.
If not: If ASPM doesn't reduce power, your motherboard or NIC may not negotiate ASPM cleanly. Realtek RTL8125 2.5 GbE NICs are known to break ASPM on recent kernels — replace with Intel I225/I226 if possible.
Right-size the PSU (new builds or rebuild candidates)
Do: Replace oversized PSU (1000W+) with appropriately-sized Gold/Platinum (450-650W for typical NAS). PSU efficiency tanks below 10% of rated load.
Expected result: 5-15W reduction in measured idle wattage from PSU efficiency improvement alone.
If not: If PSU change doesn't help, your idle wattage may already be in the PSU's efficient range — bigger gains will come from other tactics.
Consider platform migration if delta exceeds 50-80W and savings exceed $100/year
Do: Compare your current idle vs N100 mini-ITX (8-15W) or i5 tuned build (10-15W). If you'd save $100+/year and the new platform meets your workload needs, migrate.
Expected result: Clear migration go/no-go based on cost recovery period.
If not: If your existing NAS is doing 200W idle for a workload an N100 would handle, the migration usually pays back in 1-2 years.
Commands and settings paths
Measure idle wattage at the wall
Plug into Kill-A-Watt; let system idle 30 min; record W reading.
Where: Physical access to the NAS power cord.
Expected: Two numbers: HDDs-spinning + HDDs-spun-down idle wattage.
Failure means: If readings vary wildly, the system isn't truly idle (background tasks running). Disable Plex library scans + Mover before measuring.
Safe next step: Use APC UPS LCD load reading as a substitute if no Kill-A-Watt.
Verify PCIe ASPM negotiated
lspci -vv | grep -i 'aspm'
Where: Linux/Unraid shell.
Expected: Output shows 'ASPM L1 Enabled' or similar on the relevant devices.
Failure means: ASPM disabled = CPU can't reach deep C-states; idle wattage stays high.
Safe next step: Enable ASPM in BIOS; replace ASPM-breaking devices (Realtek 2.5 GbE NICs) with Intel equivalents.
Evidence to record
- Baseline idle wattage measurement (HDDs spinning + HDDs spun down).
- Per-tactic delta: HDD spin-down savings, ASPM savings, PSU swap savings.
- Final idle wattage post-optimization; cost/year math at your rate.
- If considering migration: tentative target platform + cost recovery period.
Common mistakes
- Adding an oversized PSU 'for headroom' — efficiency tanks at the idle load; ironically wastes more power than a right-sized PSU.
- Buying ECC RAM + ECC-capable platform 'because every NAS needs ECC' when the workload is media + replaceable file dumps — accepts the 30-40W idle cost without the data-criticality justification.
- Counting on HDD spin-down without auditing Plex / Mover / Community Apps for spin-down blockers — drives never spin down, expected savings never materialize.
- Realtek 2.5 GbE NIC + 'inexplicable' high idle — the NIC breaks ASPM and costs ~4W. Replace with Intel I225/I226 for the cleanest path.
Stop points
- Stop before disabling HDD spin-down's safety net (start-stop count protection) — modern NAS HDDs are rated for thousands of cycles; spin-down 4-6 times per day is well within design.
- Stop before kernel parameter experiments on a production NAS without a known-good rollback (and tested backups). `intel_idle.max_cstate=0` and similar can deeply break a system.
- Stop before buying replacement hardware solely to save power if the cost recovery period exceeds 3 years — the new hardware will likely also need replacing within that window.
Last reviewed
2026-05-18
Source-backed checks
HomeTechOps turns official docs and conservative safety rules into a shorter runbook. These links are the source trail for the page direction.