diff --git a/modules/nixos/filesystem/hoardingcow-mount.nix b/modules/nixos/filesystem/hoardingcow-mount.nix index f334e62..0441aac 100644 --- a/modules/nixos/filesystem/hoardingcow-mount.nix +++ b/modules/nixos/filesystem/hoardingcow-mount.nix @@ -7,7 +7,16 @@ fileSystems."/mnt/HoardingCow_docker_data" = { device = "192.168.1.2:/WorkHorse_docker_data"; fsType = "nfs"; - options = [ "defaults" "nofail" "_netdev" ]; + options = [ + "noatime" + "hard" + "nofail" + "_netdev" + "rsize=1048576" + "wsize=1048576" + "timeo=14" + "retrans=5" + ]; }; }; }