diff --git a/modules/system/defaults/NSGlobalDomain.nix b/modules/system/defaults/NSGlobalDomain.nix index 01e7a459e..b2c68a4a7 100644 --- a/modules/system/defaults/NSGlobalDomain.nix +++ b/modules/system/defaults/NSGlobalDomain.nix @@ -248,6 +248,24 @@ in { ''; }; + system.defaults.NSGlobalDomain.NSStatusItemSpacing = mkOption { + type = types.nullOr types.int; + default = null; + example = 12; + description = '' + Sets the spacing between status icons in the menu bar. The default is null. + ''; + }; + + system.defaults.NSGlobalDomain.NSStatusItemSelectionPadding = mkOption { + type = types.nullOr types.int; + default = null; + example = 6; + description = '' + Sets the padding around status icons in the menu bar. The default is null. + ''; + }; + system.defaults.NSGlobalDomain.InitialKeyRepeat = mkOption { type = types.nullOr types.int; default = null;