From 0557305f00005add50ea6ed01af5bd13a4759447 Mon Sep 17 00:00:00 2001 From: Chris Toph Date: Sat, 15 Feb 2025 22:18:58 -0500 Subject: [PATCH] removed umask, now using --- host/cloud/hardware.nix | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/host/cloud/hardware.nix b/host/cloud/hardware.nix index 36f181d..862bd35 100644 --- a/host/cloud/hardware.nix +++ b/host/cloud/hardware.nix @@ -6,6 +6,7 @@ # for sshfs programs.fuse.userAllowOther = true; + # TODO: use tempfls to set the acls in nix config fileSystems = { "/pool" = { fsType = "fuse.mergerfs"; @@ -20,7 +21,7 @@ "nonempty" "uid=1000" "gid=1004" # Ryot group - "umask=002" + "posix_acl=true" ]; }; @@ -32,14 +33,5 @@ "nofail" ]; }; - - # "/var/lib/nextcloud" = { - # fsType = "none"; - # device = "/pool/NextCloud"; - # options = [ - # "bind" - # "nofail" - # ]; - # }; }; }