From 4b173581dc2680cba2f7d14217a0ff7423e50a3d Mon Sep 17 00:00:00 2001 From: Rouven Seifert Date: Sun, 14 Apr 2024 11:39:11 +0200 Subject: [PATCH] mount boot drives with the `nofail` option One drive failure shouldn't block the entire boot --- hosts/quitte/hardware-configuration.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hosts/quitte/hardware-configuration.nix b/hosts/quitte/hardware-configuration.nix index d8afd10..c5b5add 100644 --- a/hosts/quitte/hardware-configuration.nix +++ b/hosts/quitte/hardware-configuration.nix @@ -44,11 +44,13 @@ { device = "/dev/disk/by-uuid/3278-8D00"; fsType = "vfat"; + options = [ "nofail" ]; }; fileSystems."/boot2" = { device = "/dev/disk/by-uuid/3366-F71E"; fsType = "vfat"; + options = [ "nofail" ]; }; swapDevices = [ ];