NixFiles/systems/mmacbookpro/finder.nix

16 lines
332 B
Nix
Raw Normal View History

2023-04-02 16:03:21 +01:00
{ config, ... }:
{
system.defaults = {
finder = {
AppleShowAllExtensions = true;
ShowPathbar = true;
ShowStatusBar = true;
FXDefaultSearchScope = "SCcf";
FXPreferredViewStyle = "Nlsv";
FXEnableExtensionChangeWarning = false;
2023-04-02 16:03:21 +01:00
};
NSGlobalDomain.AppleShowAllExtensions = true;
};
}