Skip to content

Commit

Permalink
fix: disable ~/Library/fdignore on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
nekowinston committed Aug 13, 2024
1 parent 06f0f78 commit 901192d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions home/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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;
};
Expand Down

0 comments on commit 901192d

Please sign in to comment.