patate: tweak davfs2
authorJulien Moutinho <julm+julm-nix@sourcephile.fr>
Sat, 26 Mar 2022 12:12:14 +0000 (13:12 +0100)
committerJulien Moutinho <julm+julm-nix@sourcephile.fr>
Sat, 26 Mar 2022 12:15:47 +0000 (13:15 +0100)
hosts/patate/ilico.nix

index 67043984f5cf2f34a1f5bed5c37bbe5f1066980f..96aafe617aa6d4fdc30b6b2efa19751bd8c1db20 100644 (file)
@@ -1,6 +1,9 @@
 { config, pkgs, lib, ... }:
 {
 services.davfs2.enable = true;
+users.users.sevy.extraGroups = [
+  config.services.davfs2.davGroup
+];
 fileSystems."/home/sevy/mnt/ilico/severine" = {
   device = "https://nuage.ilico.org/remote.php/dav/files/severine/";
   fsType = "davfs";
@@ -8,7 +11,14 @@ fileSystems."/home/sevy/mnt/ilico/severine" = {
     let conf = pkgs.writeText "davfs2.conf" ''
       backup_dir /home/sevy/Documents/EnTransfert/ilico/severine
       cache_dir /home/sevy/.cache/davfs2/ilico/severine
+      secrets /home/sevy/.davfs2/secrets
     ''; in
-    [ "conf=${conf}" "user" "noexec" "nosuid" "noauto" ]; # "x-systemd.automount"
+    [ "conf=${conf}" "user" "noexec" "nosuid"
+      "noauto" "nofail" "_netdev" "reconnect"
+      "x-systemd.automount"
+      "x-systemd.device-timeout=1m"
+      "x-systemd.idle-timeout=1m"
+      "x-systemd.mount-timeout=10s"
+    ];
 };
 }