From 213d234a3e2cfa565e4effd01a27d6c24e3c5cf9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Velo=20=E2=9A=A1?= <69754644+developer-velo@users.noreply.github.com> Date: Fri, 10 Jan 2025 22:18:10 +0100 Subject: [PATCH] feat: add `AppleAccentColor` option --- modules/system/defaults/NSGlobalDomain.nix | 19 +++++++++++++++++++ tests/system-defaults-write.nix | 1 + 2 files changed, 20 insertions(+) diff --git a/modules/system/defaults/NSGlobalDomain.nix b/modules/system/defaults/NSGlobalDomain.nix index 01e7a459..78ec72ac 100644 --- a/modules/system/defaults/NSGlobalDomain.nix +++ b/modules/system/defaults/NSGlobalDomain.nix @@ -47,6 +47,25 @@ in { ''; }; + system.defaults.NSGlobalDomain.AppleAccentColor = mkOption { + type = types.nullOr (types.enum [ -1 0 1 2 3 4 5 6 ]); + default = null; + description = '' + Specifies the accent color used throughout the system interface. The value can be one of the following: + + -1: Graphite + 0: Red + 1: Orange + 2: Yellow + 3: Green + 4: Blue + 5: Purple + 6: Pink + + Set this option to change the system-wide accent color. If not set, the default accent color will be used. + ''; + }; + system.defaults.NSGlobalDomain.AppleInterfaceStyleSwitchesAutomatically = mkOption { type = types.nullOr types.bool; default = null; diff --git a/tests/system-defaults-write.nix b/tests/system-defaults-write.nix index 1a29aa2d..49bdd995 100644 --- a/tests/system-defaults-write.nix +++ b/tests/system-defaults-write.nix @@ -5,6 +5,7 @@ system.defaults.NSGlobalDomain.AppleEnableMouseSwipeNavigateWithScrolls = false; system.defaults.NSGlobalDomain.AppleEnableSwipeNavigateWithScrolls = false; system.defaults.NSGlobalDomain.AppleFontSmoothing = 1; + system.defaults.NSGlobalDomain.AppleAccentColor = 4; system.defaults.NSGlobalDomain.AppleICUForce24HourTime = true; system.defaults.NSGlobalDomain.AppleKeyboardUIMode = 3; system.defaults.NSGlobalDomain.ApplePressAndHoldEnabled = true;