1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-28 02:37:09 +00:00

system.defaults: enable automatic light/dark mode

This commit is contained in:
Nicholas Coltharp 2021-08-06 18:43:03 -05:00
parent 007d700e64
commit 7a3f541d5c

View file

@ -47,6 +47,14 @@ in {
'';
};
system.defaults.NSGlobalDomain.AppleInterfaceStyleSwitchesAutomatically = mkOption {
type = types.nullOr types.bool;
default = null;
description = ''
Whether to automatically switch between light and dark mode. The default is false.
'';
};
system.defaults.NSGlobalDomain.AppleKeyboardUIMode = mkOption {
type = types.nullOr (types.enum [ 3 ]);
default = null;