Add NSGlobalDomain.NSAutomaticWindowAnimationsEnabled setting

* modules/system/defaults/NSGlobalDomain.nix: Define.
This commit is contained in:
Brian Leung 2022-01-24 20:06:13 -08:00
parent 20813f1df7
commit af3eb87e82
No known key found for this signature in database
GPG key ID: 3ADC75F013D678F9
2 changed files with 10 additions and 0 deletions

View file

@ -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;