NixFiles/systems/mmacbookpro/finder.nix

14 lines
239 B
Nix
Raw Normal View History

2023-04-02 16:03:21 +01:00
{ config, ... }:
{
system.defaults = {
finder = {
AppleShowAllExtensions = true;
QuitMenuItem = true;
ShowPathbar = true;
ShowStatusBar = true;
};
NSGlobalDomain.AppleShowAllExtensions = true;
};
}