mirror of
https://github.com/LnL7/nix-darwin.git
synced 2024-12-14 11:57:34 +00:00
Adding option for slow-motion-allowed;
This was inspired by a recent Daring Fireball post where I was reminded about this feature and how it's missing from being able to configure it in Nix-Darwin. [https://daringfireball.net/linked/2024/09/28/hidden-pref-to-restore-slow-motion-dock-minimizing-on-macos]()
This commit is contained in:
parent
3ac7acd32d
commit
f9ee41a05d
1 changed files with 8 additions and 0 deletions
|
@ -147,6 +147,14 @@ in {
|
|||
'';
|
||||
};
|
||||
|
||||
system.defaults.dock.slow-motion-allowed = mkOption {
|
||||
type = types.nullOr types.bool;
|
||||
default = null;
|
||||
description = lib.mdDoc ''
|
||||
Allow for slow-motion minimize effect while holding Shift key. The default is false.
|
||||
'';
|
||||
};
|
||||
|
||||
system.defaults.dock.static-only = mkOption {
|
||||
type = types.nullOr types.bool;
|
||||
default = null;
|
||||
|
|
Loading…
Reference in a new issue