From 86a5e7907921ea3acaa2f92a1153f0816c50089f Mon Sep 17 00:00:00 2001 From: Christoph Urlacher Date: Sat, 17 Jan 2026 21:58:24 +0100 Subject: [PATCH] System/Nixinator: Enable 16G swap --- system/nixinator/hardware-configuration.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/system/nixinator/hardware-configuration.nix b/system/nixinator/hardware-configuration.nix index d2327fa3..f3dea76c 100644 --- a/system/nixinator/hardware-configuration.nix +++ b/system/nixinator/hardware-configuration.nix @@ -124,6 +124,13 @@ }; }; + swapDevices = [ + { + device = "/var/swap"; + size = 1024 * 16; # Without hibernation 4.0 GB to 0.5 x RAM + } + ]; + hardware = { # Use all redistributable firmware (i.e. nonfree) enableAllFirmware = true;