❄️ Dotfiles for our NixOS system configuration.
1{ 2 # Custom settings not supported directly by nix-darwin. 3 # TODO: Research other useful custom settings. 4 # https://github.com/yannbertrand/macos-defaults 5 6 system.defaults.CustomUserPreferences = { 7 # Lock the size of the dock. 8 "com.apple.dock".size-immutable = true; 9 10 # Prevent creation of .DS_Store files on network or USB volumes. 11 "com.apple.desktopservices" = { 12 DSDontWriteNetworkStores = true; 13 DSDontWriteUSBStores = true; 14 }; 15 }; 16}