From 901192dba9430d45d8f7d1de5d03e3bae9a7b36c Mon Sep 17 00:00:00 2001 From: winston Date: Tue, 13 Aug 2024 03:46:10 +0200 Subject: [PATCH] fix: disable ~/Library/fdignore on Linux --- home/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/home/default.nix b/home/default.nix index 1b2ec4d..5647cb0 100644 --- a/home/default.nix +++ b/home/default.nix @@ -54,9 +54,10 @@ in # respected by `fd` & `rg`, makes it so that iCloud files are ignored by those utils # this speeds up the search processes and files aren't downloaded while searching $HOME - file."Library/.ignore".text = lib.optionalString isDarwin '' - Mobile Documents/ - ''; + file."Library/.ignore" = { + enable = isDarwin; + text = "Mobile Documents/"; + }; mac-wallpaper = ./wallpapers/dhm_1610.png; };