1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2024-12-14 11:57:34 +00:00

Merge pull request #1094 from rogeruiz/rogeruiz/add-slow-motion-allowed-for-dock

Adding option for slow-motion-allowed
This commit is contained in:
Michael Hoang 2024-09-29 20:08:41 +10:00 committed by GitHub
commit 4b43b68281
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -173,6 +173,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 { system.defaults.dock.static-only = mkOption {
type = types.nullOr types.bool; type = types.nullOr types.bool;
default = null; default = null;