From e1d3252aef2e0a734b3c0d6d615007c457d61d27 Mon Sep 17 00:00:00 2001 From: Raphael Date: Tue, 14 Oct 2025 11:54:46 +0200 Subject: [PATCH] feat(host/server): mounting the disk using the exec / acl flag - Permit to multiple user execute on the same disk --- hosts/server/hardware-configuration.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/hosts/server/hardware-configuration.nix b/hosts/server/hardware-configuration.nix index 67cb508..a202e4a 100644 --- a/hosts/server/hardware-configuration.nix +++ b/hosts/server/hardware-configuration.nix @@ -47,6 +47,10 @@ "/mnt/data" = { device = "/dev/disk/by-uuid/5729d30c-5806-4ccd-8a2a-080a258084dc"; fsType = "ext4"; + options = [ + "acl" + "exec" + ]; }; };