From 7493d60d8a26e6845abf2a0f258545b85e6f825e Mon Sep 17 00:00:00 2001 From: olaf Date: Thu, 15 May 2025 08:06:21 +0200 Subject: [PATCH] Patch auto_master --- hosts/darwin/default.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/hosts/darwin/default.nix b/hosts/darwin/default.nix index d8af098..6431d3e 100644 --- a/hosts/darwin/default.nix +++ b/hosts/darwin/default.nix @@ -121,5 +121,19 @@ in TrackpadThreeFingerDrag = true; }; }; + + patches = [ + (pkgs.writeText "auto_master.patch" '' + -- /etc/auto_master + +++ /etc/auto_master + @@ -6,3 +6,5 @@ + /home auto_home -nobrowse,hidefromfinder + /Network/Servers -fstab + /- -static + +/System/Volumes/Data/Users/olaf/NAS auto_nfs_smb -nosuid,noowners + + + '') + ]; + }; }