/** * Mac Server Mode Fixes * * Fixes for configuring Mac as a deployment server HOST (no Docker/dev tools). * Focus: what makes a Mac reliable as a server. * * Power Management (pmset): * - Disable sleep (system, disk, display) * - Auto-restart on power loss * - Fully disable sleep (disablesleep) * - Wake on LAN (womp) * - Disable hibernate * - Disable standby * - Disable Power Nap * - Disable proximity wake * - Keep awake during SSH (ttyskeepawake) * * System Services: * - Disable screensaver (-currentHost) * - Enable SSH (Remote Login) * - Disable App Nap * - Disable Spotlight indexing * - Disable Time Machine * - Disable auto-update restart * - Disable Bluetooth (manual) * - Auto-login on boot (manual) * * Network/Security: * - Enable NTP (network time) * - Disable file sharing (manual) */ import type { Fix } from '../../../../types/index.js'; export declare const macFixes: Fix[]; //# sourceMappingURL=mac.d.ts.map