1
Fork 0
mirror of https://github.com/RGBCube/Site synced 2025-07-30 12:37:50 +00:00

dump(macos.reduce-motion-nix-darwin): update

This commit is contained in:
RGBCube 2025-06-11 15:46:15 +03:00
parent cb2d9513c1
commit 357f2f21b1
Signed by: RGBCube
SSH key fingerprint: SHA256:CzqbPcfwt+GxFYNnFVCqoN5Itn4YFrshg1TrnACpA5M

View file

@ -0,0 +1,19 @@
---
title: Disable MacOS doodoo garbage shinies with Nix Darwin
date: 2025-06-11
---
Use this [Nix Darwin](https://github.com/nix-darwin/nix-darwin) module:
```nix
{
system.defaults = {
# Reduce window resize animation duration.
NSWindowResizeTime = 0.001;
# Reduce motion.
CustomSystemPreferences."com.apple.Accessibility".ReduceMotionEnabled = 1;
universalaccess.reduceMotion = true;
};
}
```