From 3932189c8be2659b5f318ce133af9350c787e392 Mon Sep 17 00:00:00 2001 From: Maxiem Geldhof Date: Sat, 8 Nov 2025 22:50:40 +0100 Subject: [PATCH] Fix mount --- systems/ren/volumes.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/systems/ren/volumes.nix b/systems/ren/volumes.nix index acfe1ef..75d8c0f 100644 --- a/systems/ren/volumes.nix +++ b/systems/ren/volumes.nix @@ -24,7 +24,7 @@ options = let # this line prevents hanging on network split - automount_opts = "rw,x-systemd.automount,noauto,x-systemd.idle-timeout=60,x-systemd.device-timeout=5s,x-systemd.mount-timeout=5s,dir_mode=0777,gid=993"; + automount_opts = "rw,x-systemd.automount,noauto,x-systemd.idle-timeout=60,x-systemd.device-timeout=5s,x-systemd.mount-timeout=5s,dir_mode=0770,file_mode=0770,gid=993"; in [ "${automount_opts},credentials=${config.age.secrets.smbsecret.path}" ];