nixos/modules/nix-darwin/system.nix
2025-03-07 08:26:21 -05:00

25 lines
600 B
Nix

{
system.defaults = {
finder = {
AppleShowAllExtensions = true;
AppleShowAllFiles = true;
CreateDesktop = false;
NewWindowTarget = "Home";
QuitMenuItem = true;
ShowExternalHardDrivesOnDesktop = false;
ShowHardDrivesOnDesktop = false;
ShowMountedServersOnDesktop = false;
ShowPathbar = true;
ShowRemovableMediaOnDesktop = false;
};
dock = {
autohide = true;
autohide-delay = 0.0;
};
NSGlobalDomain = {
NSWindowShouldDragOnGesture = true;
NSAutomaticWindowAnimationsEnabled = true;
};
};
}