Quick answer

What this guide helps you do

Measure your home server power usage, compare smart plugs and plug-in meters, and turn watts into realistic monthly and yearly costs.

Difficulty

Beginner-friendly

Focus

Small home server setup

Best used for

Practical setup, fixes, and checks

Goal

Work out:

  • how many watts your homelab actually uses
  • what that means in pounds per month and per year
  • whether a hardware change is worth it
  • where the easiest power savings are

The practical rule is simple: measure first, then optimise.


The easiest way to measure homelab power usage

Use a plug-in power meter first.

It is cheap, simple, and works with almost any server, mini PC, NAS, switch, or power strip. You plug the meter into the wall, plug the homelab device into the meter, and read the watts directly.

A smart plug can also work, but check that it reports both:

  • current watts
  • cumulative kWh

For a first measurement, a basic plug-in power meter is usually enough.


Smart plug vs plug-in power meter

Both are useful, but they suit different jobs.

OptionBest forWatch out for
Plug-in power meterOne-off measurements and quick checksUsually no long-term history
Smart plug with energy monitoringLong-term trends and remote checksSome are poor at very low wattages
UPS with monitoringServers already protected by a UPSMore expensive and may include UPS overhead

Default recommendation:

Start with a plug-in power meter. Move to a smart plug if you want long-term tracking.


What to measure

Measure three numbers:

  1. Idle watts — the server is on but doing very little.
  2. Normal-use watts — streaming, light downloads, backups, or normal household use.
  3. Peak watts — updates, transcoding, scans, or heavier jobs.

For running cost, idle and normal-use watts matter more than peak watts.

A server that idles at 12W but occasionally spikes to 45W is usually cheaper to run than one that idles at 70W all day.


How to calculate yearly running cost

Use this formula:

watts / 1000 × hours per day × days × price per kWh

Example: a mini PC using 12W continuously.

12 / 1000 × 24 × 365 = 105.12 kWh per year

At 25p per kWh:

105.12 × £0.25 = £26.28 per year

So a 12W mini PC costs roughly £26 per year to run at 25p/kWh.


How to calculate monthly running cost

Example: a small home server averaging 25W.

25 / 1000 × 24 = 0.6 kWh per day

For a 30-day month:

0.6 × 30 = 18 kWh per month

At 30p per kWh:

18 × £0.30 = £5.40 per month

That is the number to compare against hardware changes, extra drives, and always-on services.


How much electricity does a mini PC homelab use?

A good low-power mini PC homelab often sits somewhere around 5W to 20W at idle, depending on hardware, RAM, storage, and connected devices.

Rough examples:

Device typeTypical idle draw
Modern mini PC5–20W
Raspberry Pi-style board2–8W
Old desktop PC40–80W
Gaming PC used as a server60W+ before drives
3.5-inch hard drive3–8W each when spinning
SSD or NVMe driveusually under 1–2W at idle

These are rough ranges, not guarantees. Measure your own setup.


Where the power goes

Most always-on homelab power use comes from:

  • CPU and chipset
  • RAM
  • 3.5-inch hard drives
  • fans
  • inefficient power supplies
  • unnecessary GPUs
  • extra switches, routers, or old test machines

For a small home server, drives can matter as much as the computer itself.

A mini PC with one SSD can be extremely efficient. The same mini PC attached to several spinning hard drives will use more power, make more noise, and create more heat.

For storage noise and placement, see Quiet Storage: Add Disks Without Turning Your Home Into a Datacentre.


Quick wins for lower idle power

Remove zombie gear

Unplug or retire:

  • old routers
  • unused switches
  • temporary test machines
  • monitors left on permanently
  • USB drives that are no longer needed

Small background loads add up when they run 24/7.

Avoid leaving a gaming GPU idle

A dedicated GPU can use a surprising amount of power even when it is not doing anything useful.

For Jellyfin, direct play is usually better than solving every problem with more GPU. See Jellyfin Direct Play vs Transcoding.

Use SSDs where silence and low idle matter

SSDs are not always cheaper per terabyte, but they are quiet and efficient.

For operating systems, containers, databases, and small services, SSDs are the default choice.

Use larger hard drives where bulk storage makes sense.


HDD spin-down: useful, but do not overdo it

For bulk media drives, spin-down can reduce idle power and noise.

On Linux, hdparm can set a spin-down timer:

sudo hdparm -S 120 /dev/sdX

Replace /dev/sdX with the correct drive.

Be careful. Do not guess the disk name.

Check disks first:

lsblk

Do not set an aggressive spin-down timer on drives that wake constantly. Repeated spin-up and spin-down cycles can be more annoying than the power saving is worth.


Schedule heavy jobs

If your server runs heavier tasks, schedule them into predictable windows.

Examples:

  • backups
  • media scans
  • transcoding or conversions
  • scrapers
  • updates

Example cron job at 02:30 every day:

30 2 * * * /usr/local/bin/nightly-backup.sh

This does not always reduce total energy usage, but it keeps the server calmer during normal household use.


Compare old hardware with real numbers

Example A: old desktop idling at 65W.

65 / 1000 × 24 × 30 × £0.30 = £14.04 per month

Example B: mini PC idling at 12W.

12 / 1000 × 24 × 30 × £0.30 = £2.59 per month

Difference:

£14.04 - £2.59 = £11.45 per month

Yearly difference:

£11.45 × 12 = £137.40 per year

That does not mean everyone should replace their server immediately. It does mean an old desktop can quietly cost more than expected.


When not to chase tiny savings

Do not spend £200 to save £10 per year unless you also get another benefit, such as:

  • lower noise
  • less heat
  • better reliability
  • smaller size
  • newer hardware
  • simpler backups

A quiet homelab is usually a better homelab, but the numbers still need to make sense.


Simple tracking sheet

Record measurements like this:

DeviceIdle WNormal WPeak WNotes
Mini PC121838Jellyfin and Docker
USB HDD enclosure7912One 3.5-inch drive
Network switch667Always on

Then calculate cost using the normal-use number, not the peak number.


Next steps

Useful related guides:


Recap

Measure, do not guess.

Care about idle and normal-use watts more than peak watts.

A 12W mini PC can cost roughly £26 per year at 25p/kWh. An old desktop can cost several times more before it does anything useful.

If a change saves 20W to 30W all day, it is worth investigating. If it saves 1W, do it only if it also makes the setup cleaner or quieter.