NixFiles/systems/macos/finder.nix

16 lines
332 B
Nix
Raw Permalink Normal View History

2023-12-19 19:08:55 +00:00
{ config, ... }:
{
system.defaults = {
finder = {
AppleShowAllExtensions = true;
ShowPathbar = true;
ShowStatusBar = true;
FXDefaultSearchScope = "SCcf";
FXPreferredViewStyle = "Nlsv";
FXEnableExtensionChangeWarning = false;
};
NSGlobalDomain.AppleShowAllExtensions = true;
};
}