MergerFS NFS git permissions fix, and acl disable

This commit is contained in:
Chris Toph 2025-04-29 11:15:50 -04:00
parent 72ce184bd4
commit 0416d8c3c1

View file

@ -14,6 +14,9 @@ in
]) ])
]; ];
# Less permission issues with pool
programs.fuse.userAllowOther = true;
# File system co
# INFO: Cloud is the pool provider # INFO: Cloud is the pool provider
fileSystems = { fileSystems = {
"/pool" = { "/pool" = {
@ -26,10 +29,10 @@ in
"minfreespace=50G" "minfreespace=50G"
"fsname=mergerfs" "fsname=mergerfs"
"category.create=mfs" "category.create=mfs"
"nfsopenhack=all"
"nonempty" "nonempty"
"uid=1000" "uid=1000"
"gid=1004" # Ryot group "gid=1004" # Ryot group
"posix_acl=true"
]; ];
}; };