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

Merge pull request #181 from cmacrae/defaults/hide-menu-bar

defaults: introduce NSGlobalDomain option for "_HIHideMenuBar"
This commit is contained in:
Daiderd Jordan 2020-01-14 23:46:59 +01:00 committed by GitHub
commit 26d5d8f5ba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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.
'';
};
};
}