My nix-darwin and NixOS config
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

macmini: add AltServer as a login item

AltServer is a menu bar app (LSUIElement = true), which macOS explicitly
hides from Spotlight by design. Registering it as a login item means it
auto-starts at login — the correct way to use it — without needing
Spotlight at all.

+7
+7
hosts/macmini/default.nix
··· 29 29 # See docs/time-machine.md for first-time setup instructions. 30 30 myConfig.darwin.externalDisk.timeMachineVolumeUUID = "9217DB34-722B-4596-8ADD-20C8060FC257"; 31 31 32 + # AltServer is a menu bar app (LSUIElement = true) so macOS intentionally 33 + # hides it from Spotlight. Register it as a login item instead so it 34 + # launches automatically at login without needing Spotlight. 35 + system.loginItems = [ 36 + { path = "/Applications/AltServer.app"; } 37 + ]; 38 + 32 39 # Timezone — driven from myConfig.timeZone 33 40 time.timeZone = cfg.timeZone; 34 41