diff options
author | sinanmohd <sinan@sinanmohd.com> | 2024-05-04 14:42:40 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2024-05-04 19:34:57 +0530 |
commit | fccd443fd91eb8bf4fbc9c158f027edc64f951ff (patch) | |
tree | 23278deb6463fdca965ea3b5734c05837f4d189d | |
parent | 647ecc403271d77c1d4b00cfeaf0997753d0fc4c (diff) |
kay/hardware/hdd: set nofail
-rw-r--r-- | nixos/kay/hardware-configuration.nix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/nixos/kay/hardware-configuration.nix b/nixos/kay/hardware-configuration.nix index 306e9ba..5e2efdf 100644 --- a/nixos/kay/hardware-configuration.nix +++ b/nixos/kay/hardware-configuration.nix @@ -33,6 +33,7 @@ "/hdd" = { device = "/dev/disk/by-uuid/c941edb4-e393-4254-bbef-d1b3728290e9"; fsType = "ext4"; + options = [ "nofail" ]; }; }; } |