From f8a059679a65a06283f8bc760d7daea4780e534e Mon Sep 17 00:00:00 2001 From: Christoph Urlacher Date: Fri, 11 Jul 2025 21:00:37 +0200 Subject: [PATCH] System/Thinknix: Enable swap --- system/thinknix/hardware-configuration.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/system/thinknix/hardware-configuration.nix b/system/thinknix/hardware-configuration.nix index 03a7ae64..2c5e5d6c 100644 --- a/system/thinknix/hardware-configuration.nix +++ b/system/thinknix/hardware-configuration.nix @@ -55,7 +55,12 @@ }; }; - swapDevices = []; + swapDevices = [ + { + device = "/var/swap"; + size = 1024 * 4; # Without hibernation 4.0 GB to 0.5 x RAM + } + ]; hardware = { enableAllFirmware = true;