From 8d27d2ab1a2558614250eccf649abd17bc4bf203 Mon Sep 17 00:00:00 2001 From: FAForever admins Date: Sat, 12 Oct 2024 20:16:52 +0000 Subject: [PATCH] Init smb conn with version 3 --- machines/prod3/hardware-configuration.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/machines/prod3/hardware-configuration.nix b/machines/prod3/hardware-configuration.nix index 7d97b91..7bbbc5b 100644 --- a/machines/prod3/hardware-configuration.nix +++ b/machines/prod3/hardware-configuration.nix @@ -95,7 +95,7 @@ device = "//u280176.your-storagebox.de/backup"; fsType = "cifs"; options = let - automount_opts = "_netdev,x-systemd.automount,noauto,x-systemd.idle-timeout=60,x-systemd.mount-timeout=5s,seal,uid=1002,gid=1000"; + automount_opts = "_netdev,x-systemd.automount,noauto,x-systemd.idle-timeout=60,x-systemd.mount-timeout=5s,seal,uid=1002,gid=1000,vers=3.0"; in ["${automount_opts},credentials=/etc/nixos/secrets/bx10-secrets"]; }; @@ -103,7 +103,7 @@ device = "//u308453.your-storagebox.de/backup/replays"; fsType = "cifs"; options = let - automount_opts = "_netdev,x-systemd.idle-timeout=60,x-systemd.mount-timeout=20s,seal,uid=1002,gid=1000"; + automount_opts = "_netdev,x-systemd.idle-timeout=60,x-systemd.mount-timeout=20s,seal,uid=1002,gid=1000,vers=3.0"; in ["${automount_opts},credentials=/etc/nixos/secrets/bx11-secrets"]; };