From a6a641caade35896cfaa75e513ae6a901e995a67 Mon Sep 17 00:00:00 2001 From: Dmitry Voronin Date: Sat, 15 Jun 2024 18:01:47 +0300 Subject: [PATCH] Home : Add nofail swap. --- host/home/Filesystem.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/host/home/Filesystem.nix b/host/home/Filesystem.nix index ad0ec26..a790048 100644 --- a/host/home/Filesystem.nix +++ b/host/home/Filesystem.nix @@ -18,7 +18,8 @@ }; swapDevices = [{ - device = "/storage/hot/.swapfile"; - size = 128 * 1024; + device = "/storage/hot/.swapfile"; + size = 128 * 1024; + options = [ "nofail" ]; }]; }