Disable macOS doodoo garbage shinies with Nix Darwin

4 months ago 5

Use this Nix Darwin module:

{ system.defaults = { # Reduce window resize animation duration. NSGlobalDomain.NSWindowResizeTime = 0.001; # Reduce motion. CustomSystemPreferences."com.apple.Accessibility".ReduceMotionEnabled = 1; universalaccess.reduceMotion = true; }; }
Read Entire Article