diff options
| author | Domen Kožar <domen@dev.si> | 2022-03-26 07:08:41 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-26 07:08:41 +0000 |
| commit | 9d6253f52c2d6642f13cf2164ea9d765ec70708c (patch) | |
| tree | b37b0a8b77eb7ced4adb55eea56f96fd4a54227e /modules | |
| parent | 20813f1df71d638b088b7c3ddd1331521cfa811e (diff) | |
| parent | af3eb87e828e4f7a42fba7e25987eb0c19dd6b85 (diff) | |
Merge pull request #431 from leungbk/more-NSGlobalDomain
Add NSGlobalDomain.NSAutomaticWindowAnimationsEnabled setting
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/system/defaults/NSGlobalDomain.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/modules/system/defaults/NSGlobalDomain.nix b/modules/system/defaults/NSGlobalDomain.nix index 5fb329e..023c06c 100644 --- a/modules/system/defaults/NSGlobalDomain.nix +++ b/modules/system/defaults/NSGlobalDomain.nix @@ -135,6 +135,14 @@ in { ''; }; + system.defaults.NSGlobalDomain.NSAutomaticWindowAnimationsEnabled = mkOption { + type = types.nullOr types.bool; + default = null; + description = '' + Whether to animate opening and closing of windows and popovers. The default is true. + ''; + }; + system.defaults.NSGlobalDomain.NSDisableAutomaticTermination = mkOption { type = types.nullOr types.bool; default = null; |
