diff options
| author | Michael Hoang <Enzime@users.noreply.github.com> | 2024-09-29 20:08:41 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-29 20:08:41 +1000 |
| commit | 4b43b68281fd1a332c2aec8fbc077d92ca352c3e (patch) | |
| tree | c1969d5b22ca49e781ea6d8dcbb0b150fdeeccf4 | |
| parent | f2e1c4aa29fc211947c3a7113cba1dd707433b70 (diff) | |
| parent | f9ee41a05d4d4a0a39afcefddf8b5d631b9cf6d3 (diff) | |
Merge pull request #1094 from rogeruiz/rogeruiz/add-slow-motion-allowed-for-dock
Adding option for slow-motion-allowed
| -rw-r--r-- | modules/system/defaults/dock.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/modules/system/defaults/dock.nix b/modules/system/defaults/dock.nix index d92b2f1..370d60b 100644 --- a/modules/system/defaults/dock.nix +++ b/modules/system/defaults/dock.nix @@ -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 { type = types.nullOr types.bool; default = null; |
