NixFiles/systems/macos/finder.nix

16 lines
332 B
Nix

{ config, ... }:
{
system.defaults = {
finder = {
AppleShowAllExtensions = true;
ShowPathbar = true;
ShowStatusBar = true;
FXDefaultSearchScope = "SCcf";
FXPreferredViewStyle = "Nlsv";
FXEnableExtensionChangeWarning = false;
};
NSGlobalDomain.AppleShowAllExtensions = true;
};
}