1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2024-12-14 11:57:34 +00:00

defaults: introduce NSGlobalDomain option for "_HIHideMenuBar"

This commit is contained in:
cmacrae 2020-01-01 20:51:31 +00:00
parent 3ec36dd667
commit 11e6e68c99

View file

@ -297,6 +297,14 @@ in {
'';
};
system.defaults.NSGlobalDomain._HIHideMenuBar = mkOption {
type = types.nullOr types.bool;
default = null;
description = ''
Whether to autohide the menu bar. The default is false.
'';
};
};
}