From 0416d8c3c16c987a069bb072872217e4c347ab17 Mon Sep 17 00:00:00 2001 From: Chris Toph Date: Tue, 29 Apr 2025 11:15:50 -0400 Subject: [PATCH] MergerFS NFS git permissions fix, and acl disable --- hosts/nixos/cloud/hardware.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hosts/nixos/cloud/hardware.nix b/hosts/nixos/cloud/hardware.nix index 934e100..2a56fdb 100644 --- a/hosts/nixos/cloud/hardware.nix +++ b/hosts/nixos/cloud/hardware.nix @@ -14,6 +14,9 @@ in ]) ]; + # Less permission issues with pool + programs.fuse.userAllowOther = true; + # File system co # INFO: Cloud is the pool provider fileSystems = { "/pool" = { @@ -26,10 +29,10 @@ in "minfreespace=50G" "fsname=mergerfs" "category.create=mfs" + "nfsopenhack=all" "nonempty" "uid=1000" "gid=1004" # Ryot group - "posix_acl=true" ]; };