From 0dd1d1423d34b8665a7768ffe5e20760316e8872 Mon Sep 17 00:00:00 2001 From: Christoph Urlacher Date: Thu, 5 Jun 2025 12:09:37 +0200 Subject: [PATCH] System/Nixinator: Set _netdev,bg mount options for nfs shares --- system/nixinator/hardware-configuration.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/system/nixinator/hardware-configuration.nix b/system/nixinator/hardware-configuration.nix index 4f2d2b26..605eef8e 100644 --- a/system/nixinator/hardware-configuration.nix +++ b/system/nixinator/hardware-configuration.nix @@ -52,16 +52,19 @@ "/home/christoph/Movies" = { device = "192.168.86.20:/mnt/SG Exos Mirror 18TB/Movie"; fsType = "nfs"; + options = ["defaults" "rw" "relatime" "_netdev" "bg"]; }; "/home/christoph/Shows" = { device = "192.168.86.20:/mnt/SG Exos Mirror 18TB/Show"; fsType = "nfs"; + options = ["defaults" "rw" "relatime" "_netdev" "bg"]; }; "/home/christoph/Music" = { device = "192.168.86.20:/mnt/SG Exos Mirror 18TB/Music"; fsType = "nfs"; + options = ["defaults" "rw" "relatime" "_netdev" "bg"]; }; };