From 7436a7b5e7023d16053b252abefdbe6a9021c312 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Mon, 25 Nov 2024 18:26:49 +0100 Subject: [PATCH] Toggle menu bar hiding to false in macOS config This change modifies the NSGlobalDomain settings to make the menu bar always visible by setting `_HIHideMenuBar` to false. This ensures a consistent user interface by keeping the menu bar accessible at all times. --- modules/darwin/system/interface/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/darwin/system/interface/default.nix b/modules/darwin/system/interface/default.nix index 717f37b..ae0c5a4 100644 --- a/modules/darwin/system/interface/default.nix +++ b/modules/darwin/system/interface/default.nix @@ -47,7 +47,7 @@ in }; NSGlobalDomain = { - _HIHideMenuBar = true; + _HIHideMenuBar = false; AppleShowScrollBars = "Always"; }; };