mirror of
https://github.com/LnL7/nix-darwin.git
synced 2025-03-31 04:04:45 +00:00
Merge 57c543d73f
into ebb88c3428
This commit is contained in:
commit
dadf06cd5a
1 changed files with 18 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue