From 60c94ad26957aeeb5b61394c5bca29c5ecbeab7e Mon Sep 17 00:00:00 2001
From: lassulus <lassulus@lassul.us>
Date: Wed, 24 Jun 2020 12:00:27 +0200
Subject: [PATCH] l nfs-dl: add more mount options

---
 lass/2configs/nfs-dl.nix | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/lass/2configs/nfs-dl.nix b/lass/2configs/nfs-dl.nix
index ba53321b9..91b026455 100644
--- a/lass/2configs/nfs-dl.nix
+++ b/lass/2configs/nfs-dl.nix
@@ -3,17 +3,19 @@
     device = "prism.w:/export/download";
     fsType = "nfs";
     options = [
-      "timeo=14"
+      #"timeo=14"
       "noauto"
       "noatime"
       "nodiratime"
-      "noac"
-      "nocto"
+      #"noac"
+      #"nocto"
       "x-systemd.automount"
       "x-systemd.device-timeout=1"
       "x-systemd.idle-timeout=1min"
       "x-systemd.requires=retiolum.service"
       "x-systemd.requires=wpa_supplicant.service"
+      "user"
+      "_netdev"
     ];
   };
 }