NixFiles/systems/macbookpro/finder.nix

14 lines
239 B
Nix

{ config, ... }:
{
system.defaults = {
finder = {
AppleShowAllExtensions = true;
QuitMenuItem = true;
ShowPathbar = true;
ShowStatusBar = true;
};
NSGlobalDomain.AppleShowAllExtensions = true;
};
}