From 060fc1e0ea2dc5475acad52c748851eac077c122 Mon Sep 17 00:00:00 2001 From: Dmitry Voronin Date: Wed, 24 Jan 2024 15:49:48 +0300 Subject: [PATCH] Desktop : Update storage. --- .config/linux/nix/desktop.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.config/linux/nix/desktop.nix b/.config/linux/nix/desktop.nix index 41a7f1a..2ffcc60 100644 --- a/.config/linux/nix/desktop.nix +++ b/.config/linux/nix/desktop.nix @@ -164,15 +164,18 @@ fileSystems."/storage/hot" = { device = "/dev/storage/hot"; fsType = "ext4"; + options = [ "nofail" ]; }; fileSystems."/storage/cold_1" = { device = "/dev/storage/cold_1"; fsType = "ext4"; + options = [ "noauto" "nofail" ]; }; fileSystems."/storage/cold_2" = { device = "/dev/storage/cold_2"; fsType = "ext4"; + options = [ "noauto" "nofail" ]; }; }