From e3d502be7644d87be8330ac470bcea0805e84442 Mon Sep 17 00:00:00 2001 From: Martin Svanberg Date: Fri, 8 Mar 2024 17:38:57 +0100 Subject: [PATCH] Add support for AppleICUNumberSymbols --- modules/system/defaults/GlobalPreferences.nix | 27 ++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/modules/system/defaults/GlobalPreferences.nix b/modules/system/defaults/GlobalPreferences.nix index a9758022..3f7c972b 100644 --- a/modules/system/defaults/GlobalPreferences.nix +++ b/modules/system/defaults/GlobalPreferences.nix @@ -4,7 +4,8 @@ with lib; let inherit (config.lib.defaults.types) floatWithDeprecationError; -in { +in +{ options = { system.defaults.".GlobalPreferences"."com.apple.sound.beep.sound" = @@ -28,5 +29,29 @@ in { "System Preferences". Set to -1.0 to disable mouse acceleration. ''; }; + + system.defaults.".GlobalPreferences"."AppleICUNumberSymbols" = + mkOption { + type = types.nullOr types.attrs; + default = null; + example = { + "0" = "."; + "1" = ","; + "10" = "."; + "17" = ","; + }; + description = lib.mdDoc '' + Sets the number formatting for the system. For example, to use a + comma as the decimal separator and a period as the thousands + separator, set this to: + + { + "0" = "."; + "1" = ","; + "10" = "."; + "17" = ","; + }. + ''; + }; }; }