diff --git a/modules/system/defaults/NSGlobalDomain.nix b/modules/system/defaults/NSGlobalDomain.nix index 01e7a45..aec2501 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. + ''; + }; + + 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. + ''; + }; + system.defaults.NSGlobalDomain.InitialKeyRepeat = mkOption { type = types.nullOr types.int; default = null;