14 lines
239 B
Nix
14 lines
239 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
system.defaults = {
|
|
finder = {
|
|
AppleShowAllExtensions = true;
|
|
QuitMenuItem = true;
|
|
ShowPathbar = true;
|
|
ShowStatusBar = true;
|
|
};
|
|
NSGlobalDomain.AppleShowAllExtensions = true;
|
|
};
|
|
}
|