21 lines
438 B
Nix
21 lines
438 B
Nix
{
|
|
system.defaults.dock = {
|
|
tilesize = 40;
|
|
show-recents = false;
|
|
persistent-apps = [
|
|
];
|
|
};
|
|
|
|
system.defaults.finder = {
|
|
FXDefaultSearchScope = "SCcf";
|
|
FXEnableExtensionChangeWarning = false;
|
|
FXRemoveOldTrashItems = true;
|
|
};
|
|
|
|
system.defaults.NSGlobalDomain = {
|
|
NSAutomaticCapitalizationEnabled = false;
|
|
NSAutomaticSpellingCorrectionEnabled = false;
|
|
"com.apple.mouse.tapBehavior" = 1;
|
|
};
|
|
}
|