mirror of
https://github.com/RGBCube/ncc
synced 2025-07-27 10:07:44 +00:00
38 lines
850 B
Nix
38 lines
850 B
Nix
{
|
|
system.defaults.dock = {
|
|
autohide = true;
|
|
showhidden = true; # Translucent.
|
|
|
|
mouse-over-hilite-stack = true;
|
|
|
|
show-recents = false;
|
|
mru-spaces = false;
|
|
|
|
tilesize = 48;
|
|
magnification = false;
|
|
|
|
enable-spring-load-actions-on-all-items = true;
|
|
|
|
persistent-apps = [
|
|
{ app = "/Applications/Zen.app"; }
|
|
{ app = "/Applications/Ghostty.app"; }
|
|
];
|
|
};
|
|
|
|
system.defaults.CustomSystemPreferences."com.apple.dock" = {
|
|
autohide-time-modifier = 0.0;
|
|
autohide-delay = 0.0;
|
|
expose-animation-duration = 0.0;
|
|
springboard-show-duration = 0.0;
|
|
springboard-hide-duration = 0.0;
|
|
springboard-page-duration = 0.0;
|
|
|
|
# Disable hot corners.
|
|
wvous-tl-corner = 0;
|
|
wvous-tr-corner = 0;
|
|
wvous-bl-corner = 0;
|
|
wvous-br-corner = 0;
|
|
|
|
launchanim = 0;
|
|
};
|
|
}
|