From e038c503163221651c80ed01c82e4d5df2f04dfe Mon Sep 17 00:00:00 2001 From: Jason Felice Date: Fri, 28 Aug 2020 16:09:47 -0400 Subject: [PATCH] Enable setting dark mode This option does not take effect until the user logs out and then back in. I didn't call this out because I think there are several options like this already. I'm not sure Mac OS sets "Auto", but it isn't by setting this default. --- modules/system/defaults/NSGlobalDomain.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/modules/system/defaults/NSGlobalDomain.nix b/modules/system/defaults/NSGlobalDomain.nix index 80be2b6b..3cb04f21 100644 --- a/modules/system/defaults/NSGlobalDomain.nix +++ b/modules/system/defaults/NSGlobalDomain.nix @@ -23,6 +23,14 @@ in { ''; }; + system.defaults.NSGlobalDomain.AppleInterfaceStyle = mkOption { + type = types.nullOr (types.enum [ "Dark" ]); + default = null; + description = '' + Set to 'Dark' to enable dark mode, or leave unset for normal mod. + ''; + }; + system.defaults.NSGlobalDomain.AppleKeyboardUIMode = mkOption { type = types.nullOr (types.enum [ 3 ]); default = null;