mirror of
https://github.com/willemml/dotfiles.nix.git
synced 2025-04-13 19:57:19 +00:00
more darwin config
This commit is contained in:
parent
fae9109e63
commit
f1bd47b20b
2 changed files with 60 additions and 3 deletions
|
@ -8,9 +8,9 @@
|
||||||
"com.googlecode.iterm2" = import ./iterm2.nix;
|
"com.googlecode.iterm2" = import ./iterm2.nix;
|
||||||
"com.apple.finder" = import ./finder.nix;
|
"com.apple.finder" = import ./finder.nix;
|
||||||
NSGlobalDomain = {
|
NSGlobalDomain = {
|
||||||
AppleMeasurementUnits = "Centimeters";
|
|
||||||
AppleLocale = "en_CA";
|
|
||||||
AppleLanguages = [ "en-CA" ];
|
AppleLanguages = [ "en-CA" ];
|
||||||
|
AppleLocale = "en_CA";
|
||||||
|
AppleMeasurementUnits = "Centimeters";
|
||||||
AppleMetricUnits = true;
|
AppleMetricUnits = true;
|
||||||
AppleTemperatureUnit = "Celsius";
|
AppleTemperatureUnit = "Celsius";
|
||||||
NSAutomaticCapitalizationEnabled = false;
|
NSAutomaticCapitalizationEnabled = false;
|
||||||
|
@ -22,8 +22,47 @@
|
||||||
"com.apple.Safari" = {
|
"com.apple.Safari" = {
|
||||||
AutoOpenSafeDownloads = false;
|
AutoOpenSafeDownloads = false;
|
||||||
IncludeDevelopMenu = true;
|
IncludeDevelopMenu = true;
|
||||||
|
ShowFullURLInSmartSearchField = true;
|
||||||
};
|
};
|
||||||
|
"com.apple.dock" = {
|
||||||
|
autohide = true;
|
||||||
|
launchanim = false;
|
||||||
|
magnification = false;
|
||||||
|
minimize-to-application = true;
|
||||||
|
mru-spaces = false;
|
||||||
|
orientation = "bottom";
|
||||||
|
static-only = true;
|
||||||
|
tilesize = 35;
|
||||||
|
workspaces-swoosh-animation-off = true;
|
||||||
|
};
|
||||||
|
"com.apple.menuextra.clock" = {
|
||||||
|
DateFormat = "EEE d MMM HH:mm:ss";
|
||||||
|
FlashDateSeparators = false;
|
||||||
|
};
|
||||||
|
"com.apple.controlcenter" = {
|
||||||
|
"NSStatusItem Visible AccessibilityShortcuts" = false;
|
||||||
|
"NSStatusItem Visible AirDrop" = false;
|
||||||
|
"NSStatusItem Visible Battery" = true;
|
||||||
|
"NSStatusItem Visible Bluetooth" = true;
|
||||||
|
"NSStatusItem Visible Clock" = true;
|
||||||
|
"NSStatusItem Visible Display" = false;
|
||||||
|
"NSStatusItem Visible FocusModes" = false;
|
||||||
|
"NSStatusItem Visible NowPlaying" = true;
|
||||||
|
"NSStatusItem Visible ScreenMirroring" = true;
|
||||||
|
"NSStatusItem Visible Sound" = true;
|
||||||
|
"NSStatusItem Visible StageManager" = false;
|
||||||
|
"NSStatusItem Visible UserSwitcher" = false;
|
||||||
|
"NSStatusItem Visible WiFi" = true;
|
||||||
|
};
|
||||||
|
"com.apple.systempreferences" = {
|
||||||
|
"com.apple.preference.battery".hasBeenWarnedAboutEnergyUsage = true;
|
||||||
|
};
|
||||||
|
com.apple.appleseed.FeedbackAssistant.Autogather = false;
|
||||||
|
com.apple.TextEdit.RichText = false;
|
||||||
|
};
|
||||||
|
currentHostDefaults = {
|
||||||
|
"com.apple.controlcenter".BatteryShowPercentage = true;
|
||||||
|
"com.apple.dock".DidPromptSearchEngineAlert = true;
|
||||||
};
|
};
|
||||||
currentHostDefaults."com.apple.controlcenter".BatteryShowPercentage = true;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -83,8 +83,12 @@ let
|
||||||
} // default-view-settings;
|
} // default-view-settings;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
AppleShowAllExtensions = true;
|
||||||
|
|
||||||
ComputerViewSettings = dvs-with-ws;
|
ComputerViewSettings = dvs-with-ws;
|
||||||
|
|
||||||
|
CreateDesktop = false;
|
||||||
|
|
||||||
DesktopViewSettings = {
|
DesktopViewSettings = {
|
||||||
GroupBy = "Kind";
|
GroupBy = "Kind";
|
||||||
};
|
};
|
||||||
|
@ -101,6 +105,10 @@ in
|
||||||
|
|
||||||
FXArrangeGroupViewBy = "Name";
|
FXArrangeGroupViewBy = "Name";
|
||||||
|
|
||||||
|
FXDefaultSearchScope = "SCsp";
|
||||||
|
|
||||||
|
FXEnableExtensionChangeWarning = false;
|
||||||
|
|
||||||
FXEnableRemoveFromICloudDriveWarning = false;
|
FXEnableRemoveFromICloudDriveWarning = false;
|
||||||
|
|
||||||
FXICloudDriveDocuments = true;
|
FXICloudDriveDocuments = true;
|
||||||
|
@ -109,12 +117,18 @@ in
|
||||||
|
|
||||||
FXPreferredGroupBy = "Kind";
|
FXPreferredGroupBy = "Kind";
|
||||||
|
|
||||||
|
FXPreferredViewStyle = "Nlsv";
|
||||||
|
|
||||||
GoToField = "~/Library/";
|
GoToField = "~/Library/";
|
||||||
|
|
||||||
ICloudViewSettings = dvs-with-ws;
|
ICloudViewSettings = dvs-with-ws;
|
||||||
|
|
||||||
NetworkViewSettings = dvs-with-ws;
|
NetworkViewSettings = dvs-with-ws;
|
||||||
|
|
||||||
|
NSDocumentSaveNewDocumentsToCloud = false;
|
||||||
|
|
||||||
|
NSTableViewDefaultSizeMode = 1;
|
||||||
|
|
||||||
PackageViewSettings = dvs-with-ws;
|
PackageViewSettings = dvs-with-ws;
|
||||||
|
|
||||||
RecentsArrangeGroupViewBy = "Date Last Opened";
|
RecentsArrangeGroupViewBy = "Date Last Opened";
|
||||||
|
@ -125,10 +139,14 @@ in
|
||||||
|
|
||||||
ShowHardDrivesOnDesktop = false;
|
ShowHardDrivesOnDesktop = false;
|
||||||
|
|
||||||
|
ShowPathbar = true;
|
||||||
|
|
||||||
ShowRemovableMediaOnDesktop = false;
|
ShowRemovableMediaOnDesktop = false;
|
||||||
|
|
||||||
ShowSidebar = true;
|
ShowSidebar = true;
|
||||||
|
|
||||||
|
showWindowTitlebarIcons = false;
|
||||||
|
|
||||||
SidebarWidth = 135;
|
SidebarWidth = 135;
|
||||||
|
|
||||||
SidebarZoneOrder1 = [ "icloud_drive" "favorites" "devices" "tags" ];
|
SidebarZoneOrder1 = [ "icloud_drive" "favorites" "devices" "tags" ];
|
||||||
|
|
Loading…
Add table
Reference in a new issue